Skip to content

Commit

Permalink
build(deps): bump actions/download-artifact from 3 to 4 (#3885)
Browse files Browse the repository at this point in the history
Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 3 to 4.
- [Release notes](https://github.com/actions/download-artifact/releases)
- [Commits](actions/download-artifact@v3...v4)

---
updated-dependencies:
- dependency-name: actions/download-artifact
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Jan 1, 2024
1 parent 181ff2a commit 1e297eb
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/bindings_nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/bindings_python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/fuzz_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand All @@ -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
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release_java.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 1e297eb

Please sign in to comment.