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 to 4.1.7 in /.github/workflows in the github_actions group across 1 directory #1

Open
wants to merge 1 commit into
base: master
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
12 changes: 6 additions & 6 deletions .github/workflows/build-hatch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ jobs:

- name: Download Python artifacts
if: ${{ !startsWith(github.event.ref, 'refs/tags') }}
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4.1.7
with:
name: python-artifacts
path: dist
Expand Down Expand Up @@ -225,7 +225,7 @@ jobs:
run: pip install pyoxidizer==${{ env.PYOXIDIZER_VERSION }}

- name: Download staged binaries
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4.1.7
with:
name: staged-${{ runner.os }}
path: archives
Expand Down Expand Up @@ -304,7 +304,7 @@ jobs:
tar --strip-components=1 -xzf - -C /usr/local/bin "$ARCHIVE_NAME/rcodesign"

- name: Download staged binaries
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4.1.7
with:
name: staged-${{ runner.os }}
path: archives
Expand Down Expand Up @@ -450,19 +450,19 @@ jobs:

steps:
- name: Download Python artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4.1.7
with:
name: python-artifacts
path: dist

- name: Download binaries
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4.1.7
with:
name: standalone
path: archives

- name: Download installers
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4.1.7
with:
name: installers
path: installers
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-hatchling.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
id-token: write

steps:
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4.1.7
with:
name: artifacts
path: dist
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
- build

steps:
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4.1.7
with:
name: documentation

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
- build

steps:
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4.1.7
with:
name: documentation

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:
run: hatch build --hooks-only

- name: Download coverage data
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4.1.7
with:
name: coverage-data

Expand Down
Loading