diff --git a/.github/workflows/build-rust.yml b/.github/workflows/build-rust.yml index e354d71754..f90233eec8 100644 --- a/.github/workflows/build-rust.yml +++ b/.github/workflows/build-rust.yml @@ -22,7 +22,7 @@ jobs: steps: - uses: actions/checkout@v4 # create branch of version - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: path: | ~/.cargo/bin/ @@ -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/helm-build-chart.yml b/.github/workflows/helm-build-chart.yml index 8ca99f9fe1..84c17b9a16 100644 --- a/.github/workflows/helm-build-chart.yml +++ b/.github/workflows/helm-build-chart.yml @@ -12,7 +12,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Start a local k8s cluster - uses: jupyterhub/action-k3s-helm@v3 + uses: jupyterhub/action-k3s-helm@v4 with: k3s-channel: latest metrics-enabled: false 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 a41b102381..335be49fd4 100644 --- a/.github/workflows/rustification.yaml +++ b/.github/workflows/rustification.yaml @@ -80,7 +80,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 @@ -108,7 +108,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