Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): bump actions/download-artifact from 3 to 4 #3885

Merged
merged 1 commit into from
Jan 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading