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

Bump actions/download-artifact from 3.0.2 to 4.0.0 #2285

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
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:
# we just want the dev extras so we have a known version of tox and coverage
python -m pip install ./core[dev]
- name: Get packages
uses: actions/download-artifact@v3.0.2
uses: actions/download-artifact@v4.0.0
with:
name: ${{ needs.package.outputs.artifact-name }}
- name: Test
Expand Down Expand Up @@ -118,7 +118,7 @@ jobs:
# we just want the dev extras so we have a known version of coverage
python -m pip install ./core[dev]
- name: Retrieve coverage data
uses: actions/download-artifact@v3.0.2
uses: actions/download-artifact@v4.0.0
with:
name: core-coverage-data
path: core
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
echo "VERSION=${GITHUB_REF_NAME#v}" >> $GITHUB_ENV

- name: Get packages
uses: actions/download-artifact@v3.0.2
uses: actions/download-artifact@v4.0.0
with:
name: ${{ needs.ci.outputs.artifact-name }}

Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:
- "toga_winforms"
steps:
- name: Get packages
uses: actions/download-artifact@v3.0.2
uses: actions/download-artifact@v4.0.0
with:
name: ${{ needs.ci.outputs.artifact-name }}

Expand Down
1 change: 1 addition & 0 deletions changes/2285.misc.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Updated actions/download-artifact from 3.0.2 to 4.0.0.
Loading