Skip to content
Merged
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
Bump the github-actions group with 2 updates
Bumps the github-actions group with 2 updates: [actions/checkout](https://github.com/actions/checkout) and [actions/download-artifact](https://github.com/actions/download-artifact).


Updates `actions/checkout` from 4 to 5
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v4...v5)

Updates `actions/download-artifact` from 4 to 5
- [Release notes](https://github.com/actions/download-artifact/releases)
- [Commits](actions/download-artifact@v4...v5)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: '5'
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: github-actions
- dependency-name: actions/download-artifact
  dependency-version: '5'
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: github-actions
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Aug 18, 2025
commit 1fe55594f0cb208e488772689f05a36c3a3bcf8b
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
SETUPTOOLS_SCM_PRETEND_VERSION: ${{ github.event.inputs.version }}

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Build and Check Package
uses: hynek/[email protected]
Expand All @@ -37,10 +37,10 @@ jobs:
contents: write # For tag and release notes.

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Download Package
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
name: Packages
path: dist
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
id-token: write
attestations: write
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Build and Check Package
uses: hynek/[email protected]
with:
Expand Down Expand Up @@ -52,10 +52,10 @@ jobs:
tox_env: "norewrite"

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Download Package
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
name: Packages
path: dist
Expand Down
Loading