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.1.7 in /.github/workflows #10883

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
4 changes: 2 additions & 2 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,13 +73,13 @@ jobs:
node-version: 'lts/*'

- name: Download cross
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4.1.7
with:
name: cross
path: '~/.cargo/bin'

- name: Download CLI
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4.1.7
with:
name: cargo-tauri
path: 'examples/api'
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/publish-cli-js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ jobs:
- name: Install dependencies
run: pnpm i --frozen-lockfile --ignore-scripts
- name: Download artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4.1.7
with:
name: bindings-${{ matrix.settings.target }}
path: 'packages/cli/'
Expand Down Expand Up @@ -243,7 +243,7 @@ jobs:
- name: Install dependencies
run: pnpm i --frozen-lockfile --ignore-scripts
- name: Download artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4.1.7
with:
name: bindings-x86_64-unknown-linux-gnu
path: 'packages/cli'
Expand Down Expand Up @@ -280,7 +280,7 @@ jobs:
- name: Install dependencies
run: pnpm i --frozen-lockfile --ignore-scripts
- name: Download artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4.1.7
with:
name: bindings-x86_64-unknown-linux-musl
path: 'packages/cli/'
Expand Down Expand Up @@ -319,12 +319,12 @@ jobs:
run: ls -R .
shell: bash
- name: Download aarch64-gnu artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4.1.7
with:
name: bindings-aarch64-unknown-linux-gnu
path: 'packages/cli'
- name: Download armv7-gnueabihf artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4.1.7
with:
name: bindings-armv7-unknown-linux-gnueabihf
path: 'packages/cli/'
Expand Down Expand Up @@ -371,7 +371,7 @@ jobs:
- name: Install dependencies
run: pnpm i --frozen-lockfile --ignore-scripts
- name: Download all artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4.1.7
with:
path: packages/cli/artifacts
- name: Move artifacts
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-cli-rs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
uses: actions/checkout@v4

- name: Download built CLIs
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4.1.7
with:
path: outputs

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/udeps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ jobs:
- uses: Swatinem/rust-cache@v2

- name: Download udeps
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4.1.7
with:
name: udeps
path: '~/.cargo/bin'
Expand Down
Loading