Skip to content

Commit 657b25f

Browse files
Chore(deps): Bump the actions-infrastructure group across 1 directory with 2 updates
Bumps the actions-infrastructure group with 2 updates in the / directory: [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: actions-infrastructure - dependency-name: actions/download-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-infrastructure ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 8234ec3 commit 657b25f

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/codespell.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ jobs:
1414

1515
steps:
1616
- name: Checkout
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v5
1818
- name: Codespell
1919
uses: codespell-project/actions-codespell@v2

.github/workflows/tests.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
build:
3131
runs-on: ubuntu-latest
3232
steps:
33-
- uses: actions/checkout@v4
33+
- uses: actions/checkout@v5
3434
with:
3535
fetch-depth: 0
3636
- name: Install the latest version of uv
@@ -49,7 +49,7 @@ jobs:
4949
matrix:
5050
package: ["wheel", "sdist"]
5151
steps:
52-
- uses: actions/download-artifact@v4
52+
- uses: actions/download-artifact@v5
5353
with:
5454
name: dist
5555
path: dist/
@@ -100,7 +100,7 @@ jobs:
100100
DEPENDS: ${{ matrix.dependencies }}
101101

102102
steps:
103-
- uses: actions/checkout@v4
103+
- uses: actions/checkout@v5
104104
- name: Install the latest version of uv
105105
uses: astral-sh/setup-uv@v6
106106
- name: Set up Python ${{ matrix.python-version }}
@@ -133,7 +133,7 @@ jobs:
133133
needs: [test, test-package]
134134
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
135135
steps:
136-
- uses: actions/download-artifact@v4
136+
- uses: actions/download-artifact@v5
137137
with:
138138
name: dist
139139
path: dist/
@@ -150,7 +150,7 @@ jobs:
150150
check: ['specs', 'style']
151151

152152
steps:
153-
- uses: actions/checkout@v4
153+
- uses: actions/checkout@v5
154154
- name: Install the latest version of uv
155155
uses: astral-sh/setup-uv@v6
156156
- name: Show tox config

0 commit comments

Comments
 (0)