diff --git a/.github/workflows/bindings_nodejs.yml b/.github/workflows/bindings_nodejs.yml index 0a8a91026e9..b7bb27aa567 100644 --- a/.github/workflows/bindings_nodejs.yml +++ b/.github/workflows/bindings_nodejs.yml @@ -280,7 +280,7 @@ jobs: run: pnpm install --frozen-lockfile - name: Download all artifacts - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: path: bindings/nodejs/artifacts - name: Move artifacts diff --git a/.github/workflows/bindings_python.yml b/.github/workflows/bindings_python.yml index 1aaa9e45d38..2eb06a736ec 100644 --- a/.github/workflows/bindings_python.yml +++ b/.github/workflows/bindings_python.yml @@ -114,7 +114,7 @@ jobs: id-token: write needs: [macos, linux, windows] steps: - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: name: wheels path: bindings/python/dist diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index f9e0026b238..57a4dd57b10 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -317,55 +317,55 @@ jobs: run: corepack enable - name: Download rust docs - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: rust-docs path: ./website/static/docs/rust - name: Download nodejs docs - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: nodejs-docs path: ./website/static/docs/nodejs - name: Download python docs - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: python-docs path: ./website/static/docs/python - name: Download java docs - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: java-docs path: ./website/static/docs/java - name: Download C docs - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: C-docs path: ./website/static/docs/c - name: Download lua docs - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: lua-docs path: ./website/static/docs/lua - name: Download haskell docs - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: haskell-docs path: ./website/static/docs/haskell - name: Download cpp docs - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: cpp-docs path: ./website/static/docs/cpp - name: Download ocaml docs - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: ocaml-docs path: ./website/static/docs/ocaml diff --git a/.github/workflows/fuzz_test.yml b/.github/workflows/fuzz_test.yml index 8d6dee79e02..2d604896617 100644 --- a/.github/workflows/fuzz_test.yml +++ b/.github/workflows/fuzz_test.yml @@ -93,7 +93,7 @@ jobs: AWS_EC2_METADATA_DISABLED: "true" run: aws --endpoint-url http://127.0.0.1:9000/ s3 mb s3://test - name: Download Fuzz Targets - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: fuzz_targets path: ./target @@ -122,7 +122,7 @@ jobs: - name: Install libfuzzer run: sudo apt-get install -y libfuzzer-14-dev - name: Download Fuzz Targets - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: fuzz_targets path: ./target @@ -147,7 +147,7 @@ jobs: - name: Install libfuzzer run: sudo apt-get install -y libfuzzer-14-dev - name: Download Fuzz Targets - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: fuzz_targets path: ./target diff --git a/.github/workflows/release_java.yml b/.github/workflows/release_java.yml index 43d88c4d4e4..083da2e6055 100644 --- a/.github/workflows/release_java.yml +++ b/.github/workflows/release_java.yml @@ -130,27 +130,27 @@ jobs: run: echo "LOCAL_STAGING_DIR=$HOME/local-staging" >> $GITHUB_ENV - name: Download windows staging directory - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: windows-x86_64-local-staging path: ~/windows-x86_64-local-staging - name: Download linux x86_64 staging directory - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: linux-x86_64-local-staging path: ~/linux-x86_64-local-staging - name: Download linux aarch_64 staging directory - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: linux-aarch_64-local-staging path: ~/linux-aarch_64-local-staging - name: Download darwin staging directory - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: osx-x86_64-local-staging path: ~/osx-x86_64-local-staging - name: Download darwin (aarch64) staging directory - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: osx-aarch_64-local-staging path: ~/osx-aarch_64-local-staging