From d02d1a860da1dcb1b9ed92697cd9438edcc8c00a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 23 May 2022 02:39:53 +0000 Subject: [PATCH] Bump actions/upload-artifact from 1 to 3 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 1 to 3. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v1...v3) --- 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 | 10 +++++----- .github/workflows/osx.yml | 12 ++++++------ .github/workflows/windows.yml | 8 ++++---- 4 files changed, 16 insertions(+), 16 deletions(-) diff --git a/.github/workflows/indent.yml b/.github/workflows/indent.yml index e7474201cc..ac5b78f758 100644 --- a/.github/workflows/indent.yml +++ b/.github/workflows/indent.yml @@ -38,7 +38,7 @@ jobs: ! [ -s doxygen.log ] || exit 1 tar -czf doxygen_documentation.tar.gz doc/doxygen - name: archive documentation - uses: actions/upload-artifact@v1 + uses: actions/upload-artifact@v3 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 d6104a77ca..4f907a793e 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -40,7 +40,7 @@ jobs: run: | cmake -D BOOST_DIR=/home/runner/work/dealii/boost -D BOOST_INCLUDEDIR=/home/runner/work/dealii/boost -D BOOST_LIBRARYDIR=/home/runner/work/dealii/boost/stage/x64/Release/lib -D CMAKE_BUILD_TYPE=Release -D CMAKE_CXX_COMPILER=g++-10 -D DEAL_II_CXX_FLAGS='-Werror -std=c++20' -D DEAL_II_EARLY_DEPRECATIONS=ON -DDEAL_II_COMPONENT_PYTHON_BINDINGS=ON . - name: archive - uses: actions/upload-artifact@v1 + uses: actions/upload-artifact@v3 with: name: linux-serial-detailed.log path: detailed.log @@ -92,7 +92,7 @@ jobs: -D DEAL_II_COMPONENT_EXAMPLES="OFF" \ .. - name: archive - uses: actions/upload-artifact@v1 + uses: actions/upload-artifact@v3 with: name: linux-simplex-detailed.log path: build/detailed.log @@ -112,7 +112,7 @@ jobs: ctest --output-on-failure -j 2 - name: failed test log if: ${{ failure() }} - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: test-log path: | @@ -160,7 +160,7 @@ jobs: -D DEAL_II_COMPONENT_EXAMPLES="ON" \ . - name: archive - uses: actions/upload-artifact@v1 + uses: actions/upload-artifact@v3 with: name: linux-cuda-detailed.log path: detailed.log @@ -230,7 +230,7 @@ jobs: -D TBB_DIR=${TBBROOT} \ . - name: archive - uses: actions/upload-artifact@v1 + uses: actions/upload-artifact@v3 with: name: linux-intel-detailed.log path: detailed.log diff --git a/.github/workflows/osx.yml b/.github/workflows/osx.yml index 17518d8a6d..2f3619c7d3 100644 --- a/.github/workflows/osx.yml +++ b/.github/workflows/osx.yml @@ -26,7 +26,7 @@ jobs: run: | cmake -D CMAKE_BUILD_TYPE=Debug -D DEAL_II_CXX_FLAGS='-Werror' -D DEAL_II_EARLY_DEPRECATIONS=ON . - name: archive - uses: actions/upload-artifact@v1 + uses: actions/upload-artifact@v3 with: name: serial-detailed.log path: detailed.log @@ -35,14 +35,14 @@ jobs: make -j 2 make -j 2 test # quicktests - name: archive error 1 - uses: actions/upload-artifact@v1 + uses: actions/upload-artifact@v3 if: always() continue-on-error: true with: name: osx-serial-CMakeOutput.log path: CMakeFiles/CMakeOutput.log - name: archive error 2 - uses: actions/upload-artifact@v1 + uses: actions/upload-artifact@v3 if: always() continue-on-error: true with: @@ -72,7 +72,7 @@ jobs: run: | CC=mpicc CXX=mpic++ cmake -D CMAKE_BUILD_TYPE=Debug -D DEAL_II_WITH_64BIT_INDICES=ON -D DEAL_II_CXX_FLAGS='-Werror' -D DEAL_II_EARLY_DEPRECATIONS=ON -D DEAL_II_WITH_MPI=on . - name: archive - uses: actions/upload-artifact@v1 + uses: actions/upload-artifact@v3 with: name: parallel-detailed.log path: detailed.log @@ -81,14 +81,14 @@ jobs: make -j 2 make -j 2 test #quicktests - name: archive error 1 - uses: actions/upload-artifact@v1 + uses: actions/upload-artifact@v3 if: always() continue-on-error: true with: name: osx-parallel64-CMakeOutput.log path: CMakeFiles/CMakeOutput.log - name: archive error 2 - uses: actions/upload-artifact@v1 + uses: actions/upload-artifact@v3 if: always() continue-on-error: true with: diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 724c7e6d00..0267e455ed 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -34,7 +34,7 @@ jobs: cd build cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=c:/project -DDEAL_II_WITH_ZLIB=off -DDEAL_II_CXX_FLAGS="-WX /D FE_EVAL_FACTORY_DEGREE_MAX=2" -T host=x64 -A x64 .. - name: archive logs - uses: actions/upload-artifact@v1 + uses: actions/upload-artifact@v3 with: name: windows-serial-detailed.log path: build/detailed.log @@ -49,19 +49,19 @@ jobs: run: | cmake --build build --target test -- -m - name: archive library - uses: actions/upload-artifact@v1 + uses: actions/upload-artifact@v3 with: name: dealii-windows.zip path: c:/project/dealii-windows.zip - name: archive error 1 - uses: actions/upload-artifact@v1 + uses: actions/upload-artifact@v3 if: always() continue-on-error: true with: name: windows-serial-CMakeOutput.log path: build/CMakeFiles/CMakeOutput.log - name: archive error 2 - uses: actions/upload-artifact@v1 + uses: actions/upload-artifact@v3 if: always() continue-on-error: true with: -- 2.39.5