Skip to content

Commit

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

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

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Oct 28, 2022
1 parent f54fcc5 commit 8042600
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/branch-test-setup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ jobs:
yarn global add replace
$(yarn global bin)/replace '"version": "${{ needs.compile.outputs.current-version }}"' '"version": "${{ needs.compile.outputs.next-version }}"' package.json
- name: Download dist
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
with:
name: compile-dist
path: dist/
Expand Down Expand Up @@ -143,7 +143,7 @@ jobs:
env:
TAG_VERSION: v${{ needs.compile.outputs.next-version }}
- name: Downloads bin
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3

- name: Release tip tag for branch
uses: pyTooling/Actions/releaser@r0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
yarn config set network-timeout 300000
yarn --frozen-lockfile --perfer-offline
- name: Download dist
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
with:
name: compile-dist
path: dist/
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -152,12 +152,12 @@ jobs:
# shell: bash
# run: $(yarn global bin)/replace 'lightArgs\.push\(\.\.\.objectFiles\);' 'lightArgs.push("-sval", ...objectFiles);' node_modules/app-builder-lib/out/targets/MsiTarget.js
- name: Download dist
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
with:
name: compile-dist
path: dist/
- name: Download cetificates
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
with:
name: certificates
- name: Build bin
Expand All @@ -179,7 +179,7 @@ jobs:
with:
fetch-depth: 0
- name: Download all dist form build jobs
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
with:
path: bin
- name: Generate hashes
Expand Down

0 comments on commit 8042600

Please sign in to comment.