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 #684

Closed
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
12 changes: 6 additions & 6 deletions .github/workflows/build-git-installers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ jobs:
fail-fast: false
steps:
- name: Download pkg-x86_64
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4.1.7
with:
name: pkg-x86_64
path: pkg-x86_64
Expand Down Expand Up @@ -617,7 +617,7 @@ jobs:
needs: [prereqs, windows_artifacts, create-macos-artifacts, create-linux-artifacts]
steps:
- name: Download artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4.1.7
with:
name: ${{ matrix.component.artifact }}

Expand Down Expand Up @@ -684,25 +684,25 @@ jobs:
needs.windows_artifacts.result == 'success')
steps:
- name: Download Windows portable installer
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4.1.7
with:
name: win-portable-x86_64
path: win-portable-x86_64

- name: Download Windows x86_64 installer
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4.1.7
with:
name: win-installer-x86_64
path: win-installer-x86_64

- name: Download macOS artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4.1.7
with:
name: macos-artifacts
path: macos-artifacts

- name: Download Debian package
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4.1.7
with:
name: linux-artifacts
path: deb-package
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ jobs:
cancel-in-progress: ${{ needs.ci-config.outputs.skip_concurrent == 'yes' }}
steps:
- name: download tracked files and build artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v4.1.7
with:
name: windows-artifacts
path: ${{github.workspace}}
Expand Down Expand Up @@ -229,7 +229,7 @@ jobs:
steps:
- uses: git-for-windows/setup-git-for-windows-sdk@v1
- name: download tracked files and build artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v4.1.7
with:
name: vs-artifacts-x64
path: ${{github.workspace}}
Expand Down
Loading