Skip to content

Commit

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

---
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 Dec 17, 2023
1 parent 642be7f commit 38199e9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Download dist artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: pyhanko-dist
path: dist/
Expand All @@ -86,7 +86,7 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Download dist artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: pyhanko-dist
path: dist/
Expand Down Expand Up @@ -123,7 +123,7 @@ jobs:
with:
python-version: ${{ env.MAIN_PYTHON_VERSION }}
- name: Download dist artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: pyhanko-dist
path: dist/
Expand All @@ -144,7 +144,7 @@ jobs:
# checkout necessary to ensure the uploaded report contains the correct paths
- uses: actions/checkout@v4
- name: Retrieve coverage reports
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: coverage
path: ./reports/
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,17 +81,17 @@ jobs:
discussions: write
steps:
- name: Download dist artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: pyhanko-dist
path: dist/
- name: Download provenance data
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: multiple.intoto.jsonl
path: provenance/
- name: Download release body
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: release-body
path: release-body
Expand Down

0 comments on commit 38199e9

Please sign in to comment.