From 4f210914b7cb25e8b536791226d1d6abae1e0d31 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 19 Dec 2023 09:08:22 +0000 Subject: [PATCH] Build(deps): Bump the github-actions group with 2 updates Bumps the github-actions group with 2 updates: [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `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) Updates `actions/download-artifact` from 3 to 4 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/download-artifact dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/build-rust.yml | 2 +- .github/workflows/build_and_test.yml | 2 +- .github/workflows/container.yml | 2 +- .github/workflows/release.yml | 2 +- .github/workflows/rustification.yaml | 4 ++-- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build-rust.yml b/.github/workflows/build-rust.yml index e354d71754..45f5aee73f 100644 --- a/.github/workflows/build-rust.yml +++ b/.github/workflows/build-rust.yml @@ -54,7 +54,7 @@ jobs: - run: mv rust/target/aarch64-unknown-linux-gnu/release/feed-verifier assets/feed-verifier-aarch64-unknown-linux-gnu - run: mv rust/target/x86_64-unknown-linux-gnu/release/feed-verifier assets/feed-verifier-x86_64-unknown-linux-gnu - name: archive - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: rs-binaries path: assets/* diff --git a/.github/workflows/build_and_test.yml b/.github/workflows/build_and_test.yml index d605f9edde..6e6e4a786d 100644 --- a/.github/workflows/build_and_test.yml +++ b/.github/workflows/build_and_test.yml @@ -37,7 +37,7 @@ jobs: cmake -Bbuild -DCMAKE_C_COMPILER=/usr/share/clang/scan-build-14/libexec/ccc-analyzer scan-build -o ~/scan-build-report cmake --build build - name: Upload scan-build report - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: scan-build-report path: ~/scan-build-report/ diff --git a/.github/workflows/container.yml b/.github/workflows/container.yml index 055538acb4..86d4901b1c 100644 --- a/.github/workflows/container.yml +++ b/.github/workflows/container.yml @@ -74,7 +74,7 @@ jobs: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: name: rs-binaries path: assets diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f793654800..3fff184dd6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -170,7 +170,7 @@ jobs: git commit -m "Automated commit: change version from ${{ env.LATEST_VERSION }} -> ${{ env.NEW_VERSION }}" git push origin ${{ env.RELEASE_REF }} fi - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: name: rs-binaries path: assets diff --git a/.github/workflows/rustification.yaml b/.github/workflows/rustification.yaml index e50b8ce729..01f6dd321a 100644 --- a/.github/workflows/rustification.yaml +++ b/.github/workflows/rustification.yaml @@ -81,7 +81,7 @@ jobs: steps: - uses: actions/checkout@v4 - run: FEED_DIR="feed/" sh .github/prepare-feed.sh - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: name: rs-binaries path: assets @@ -109,7 +109,7 @@ jobs: - uses: actions/checkout@v4 - run: apt-get update && apt-get install -y docker.io - run: FEED_DIR="feed/" sh .github/prepare-feed.sh - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: name: rs-binaries path: assets