From 8ae2e2c27980bb3e14fde4168cdae18bf0f799bd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Dec 2023 02:58:46 +0000 Subject: [PATCH] Bump actions/upload-artifact from 3 to 4 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 4. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/indent.yml | 2 +- .github/workflows/linux.yml | 2 +- .github/workflows/osx.yml | 4 ++-- .github/workflows/windows.yml | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/indent.yml b/.github/workflows/indent.yml index ef12d28117..bacf4d3b10 100644 --- a/.github/workflows/indent.yml +++ b/.github/workflows/indent.yml @@ -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 diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 39f0f2abcb..5147224e52 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -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 diff --git a/.github/workflows/osx.yml b/.github/workflows/osx.yml index 9f5637077d..6df5df9cd3 100644 --- a/.github/workflows/osx.yml +++ b/.github/workflows/osx.yml @@ -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: @@ -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: diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 7bb02398de..ce3b4cbad4 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -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: -- 2.39.5