Skip to content

Commit

Permalink
Bump actions/upload-artifact from 2.3.1 to 3 (#1149)
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot[bot] authored Mar 4, 2022
1 parent e7616fd commit bf30d11
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/coq-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ jobs:
eval $(opam env)
etc/ci/github-actions-make.sh -j2 only-test-amd64-files
- name: upload OCaml files
uses: actions/upload-artifact@v2.3.1
uses: actions/upload-artifact@v3
with:
name: ExtractionOCaml
path: src/ExtractionOCaml
Expand All @@ -96,7 +96,7 @@ jobs:
- name: display per-line timing info
run: etc/ci/github-actions-display-per-line-timing.sh
# - name: upload timing and .vo info
# uses: actions/upload-artifact@v2.3.1
# uses: actions/upload-artifact@v3
# with:
# name: build-outputs
# path: .
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/coq-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ jobs:
%CYGWIN_ROOT%\bin\bash.exe -l -c 'cd "%cd%"; opam exec -- etc/ci/github-actions-make.sh -j${NJOBS} only-test-amd64-files'
shell: cmd
- name: upload OCaml files
uses: actions/upload-artifact@v2.3.1
uses: actions/upload-artifact@v3
with:
name: ExtractionOCaml
path: src/ExtractionOCaml
Expand All @@ -102,7 +102,7 @@ jobs:
%CYGWIN_ROOT%\bin\bash.exe -l -c 'cd "%cd%"; etc/ci/github-actions-display-per-line-timing.sh'
shell: cmd
# - name: upload timing and .vo info
# uses: actions/upload-artifact@v2.3.1
# uses: actions/upload-artifact@v3
# with:
# name: build-outputs
# path: .
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/coq.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,23 +71,23 @@ jobs:
- name: all
run: etc/ci/github-actions-make.sh ${EXTRA_GH_REPORTIFY} -j2 all
- name: upload generated files
uses: actions/upload-artifact@v2.3.1
uses: actions/upload-artifact@v3
with:
name: generated-files-${{ matrix.env.COQ_VERSION }}
path: fiat-*/
if: ${{ failure() }}
- name: only-test-amd64-files
run: etc/ci/github-actions-make.sh -j2 only-test-amd64-files
- name: upload OCaml files
uses: actions/upload-artifact@v2.3.1
uses: actions/upload-artifact@v3
with:
name: ExtractionOCaml-${{ matrix.env.COQ_VERSION }}
path: src/ExtractionOCaml
if: always ()
- name: standalone-haskell
run: etc/ci/github-actions-make.sh -j1 standalone-haskell GHCFLAGS='+RTS -M6G -RTS'
- name: upload Haskell files
uses: actions/upload-artifact@v2.3.1
uses: actions/upload-artifact@v3
with:
name: ExtractionHaskell-${{ matrix.env.COQ_VERSION }}
path: src/ExtractionHaskell
Expand All @@ -97,7 +97,7 @@ jobs:
- name: display per-line timing info
run: etc/ci/github-actions-display-per-line-timing.sh
# - name: upload timing and .vo info
# uses: actions/upload-artifact@v2.3.1
# uses: actions/upload-artifact@v3
# with:
# name: build-outputs-${{ matrix.env.COQ_VERSION }}
# path: .
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/java.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
run: make only-test-java-files EXTERNAL_DEPENDENCIES=1
- name: make documentation
run: make only-javadoc EXTERNAL_DEPENDENCIES=1
- uses: actions/upload-artifact@v2.3.1
- uses: actions/upload-artifact@v3
with:
name: fiat-javadoc
path: fiat-java/doc

0 comments on commit bf30d11

Please sign in to comment.