8000 build(deps): bump actions/download-artifact from 1 to 4.1.7 in /.github/workflows by dependabot[bot] · Pull Request #1 · CyberFlameGO/git · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

build(deps): bump actions/download-artifact from 1 to 4.1.7 in /.github/workflows #1

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

Open
wants to merge 1 commit into
base: vfs-2.33.0
Choose a base branch
from
Open
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
14 changes: 7 additions & 7 deletions .github/workflows/build-git-installers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ jobs:
fail-fast: false
steps:
- name: Download pkg-x86_64
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4.1.7
with:
name: pkg-x86_64
path: pkg-x86_64
Expand Down Expand Up @@ -470,7 +470,7 @@ jobs:
- name: Clone repository
uses: actions/checkout@v2
- name: Download unsigned packages
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4.1.7
with:
name: deb-package-unsigned
path: ${{ env.ARTIFACTS_DIR }}/unsigned
Expand Down Expand Up @@ -507,29 +507,29 @@ jobs:
needs.windows_artifacts.result == 'success')
steps:
- name: Download Windows portable installer
uses: actions/download-artifact@v2
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@v2
uses: actions/download-artifact@v4.1.7
with:
name: win-installer-x86_64
path: win-installer-x86_64
- name: Download Mac installer
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4.1.7
with:
name: osx-installer
path: osx-installer
- name: Download Ubuntu package (signed)
if: needs.prereqs.outputs.deb_signable == 'true'
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4.1.7
with:
name: deb-package-signed
path: deb-package
- name: Download Ubuntu package (unsigned)
if: needs.prereqs.outputs.deb_signable != 'true'
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4.1.7
with:
name: deb-package-unsigned
path: deb-package
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/git-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ jobs:
flavor: build-installers
- name: Download bundle-artifacts
if: env.SKIP != 'true'
uses: actions/download-artifact@v1
uses: actions/download-artifact@v4.1.7
with:
name: bundle-artifacts
path: bundle-artifacts
Expand Down Expand Up @@ -256,7 +256,7 @@ jobs:
git config --global user.email "$USER_EMAIL"
- name: Download bundle-artifacts
if: env.SKIP != 'true'
uses: actions/download-artifact@v1
uses: actions/download-artifact@v4.1.7
with:
name: bundle-artifacts
path: bundle-artifacts
Expand Down Expand Up @@ -358,13 +358,13 @@ jobs:
esac
- name: Download pkg-${{matrix.arch.name}}
if: env.SKIP != 'true'
uses: actions/download-artifact@v1
uses: actions/download-artifact@v4.1.7
with:
name: pkg-${{matrix.arch.name}}
path: pkg-${{matrix.arch.name}}
- name: Download bundle-artifacts
if: env.SKIP != 'true'
uses: actions/download-artifact@v1
uses: actions/download-artifact@v4.1.7
with:
name: bundle-artifacts
path: bundle-artifacts
Expand All @@ -379,7 +379,7 @@ jobs:
architecture: i686
- name: Download arm64 artifact
if: env.SKIP != 'true' && matrix.arch.arm64 == true
uses: actions/download-artifact@v1
uses: actions/download-artifact@v4.1.7
with:
name: arm64-artifacts
path: ${{github.workspace}}/arm64
Expand Down Expand Up @@ -474,13 +474,13 @@ jobs:
esac
- name: Download pkg-x86_64
if: env.SKIP != 'true'
uses: actions/download-artifact@v1
uses: actions/download-artifact@v4.1.7
with:
name: pkg-x86_64
path: pkg-x86_64
- name: Download bundle-artifacts
if: env.SKIP != 'true'
uses: actions/download-artifact@v1
uses: actions/download-artifact@v4.1.7
with:
name: bundle-artifacts
path: bundle-artifacts
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ jobs:
nr: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
steps:
- name: download tracked files and build artifacts
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4.1.7
with:
name: windows-artifacts
path: ${{github.workspace}}
Expand Down Expand Up @@ -187,7 +187,7 @@ jobs:
steps:
- uses: git-for-windows/setup-git-for-windows-sdk@v1
- name: download tracked files and build artifacts
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4.1.7
with:
name: vs-artifacts-x64
path: ${{github.workspace}}
Expand Down
Loading
0