Skip to content

Commit

Permalink
Merge pull request #16362 from dealii/dependabot/github_actions/actio…
Browse files Browse the repository at this point in the history
…ns/upload-artifact-4

Bump actions/upload-artifact from 3 to 4
  • Loading branch information
marcfehling committed Dec 18, 2023
2 parents 671a53c + 8ae2e2c commit 260bb83
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/indent.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
! [ -s doxygen.log ] || exit 1
tar -czf doxygen_documentation.tar.gz doc/doxygen
- name: archive documentation
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: doxygen_documentation.tar.gz
path: build/doxygen_documentation.tar.gz
2 changes: 1 addition & 1 deletion .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@ jobs:
..
cat detailed.log
- name: archive detailed.log
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: linux-cuda-clang-detailed.log
path: build/detailed.log
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/osx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
make VERBOSE=1 -j2
make -j3 test # quicktests
- name: upload CMakeCongiureLog
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: always()
continue-on-error: true
with:
Expand Down Expand Up @@ -91,7 +91,7 @@ jobs:
make VERBOSE=1 -j2
make -j3 test #quicktests
- name: upload CMakeConfigureLog
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: always()
continue-on-error: true
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,12 +70,12 @@ jobs:
- name: upload library
# run only if a PR is merged into master
if: ${{ github.ref == 'refs/heads/master' && matrix.os == 'windows-2022' }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: dealii-windows.zip
path: c:/project/dealii-windows.zip
- name: upload CMakeConfigureLog
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: always()
continue-on-error: true
with:
Expand Down

0 comments on commit 260bb83

Please sign in to comment.