Skip to content

Commit 8db3538

Browse files
chore(deps): bump the actions group with 2 updates (#2551)
* chore(deps): bump the actions group with 2 updates Bumps the 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: actions - dependency-name: actions/download-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <[email protected]> * Update actions versions in documentation/examples --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Joe Rickerby <[email protected]>
1 parent e5caaec commit 8db3538

File tree

10 files changed

+18
-18
lines changed

10 files changed

+18
-18
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
dist:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v5
1515

1616
- uses: hynek/build-and-inspect-python-package@v2
1717

@@ -27,7 +27,7 @@ jobs:
2727
attestations: write
2828

2929
steps:
30-
- uses: actions/download-artifact@v4
30+
- uses: actions/download-artifact@v5
3131
with:
3232
name: Packages
3333
path: dist

.github/workflows/test.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
name: Linters (mypy, ruff, etc.)
3838
runs-on: ubuntu-latest
3939
steps:
40-
- uses: actions/checkout@v4
40+
- uses: actions/checkout@v5
4141
- uses: actions/setup-python@v5
4242
id: python
4343
with:
@@ -62,7 +62,7 @@ jobs:
6262
python_version: '3.14'
6363
timeout-minutes: 180
6464
steps:
65-
- uses: actions/checkout@v4
65+
- uses: actions/checkout@v5
6666
- uses: actions/setup-python@v5
6767
name: Install Python ${{ matrix.python_version }}
6868
with:
@@ -180,7 +180,7 @@ jobs:
180180
outputs:
181181
archs: ${{ steps.archs.outputs.archs }}
182182
steps:
183-
- uses: actions/checkout@v4
183+
- uses: actions/checkout@v5
184184
- uses: actions/setup-python@v5
185185
with:
186186
python-version: "3.x"
@@ -203,7 +203,7 @@ jobs:
203203
matrix:
204204
arch: ${{ fromJSON(needs.emulated-archs.outputs.archs) }}
205205
steps:
206-
- uses: actions/checkout@v4
206+
- uses: actions/checkout@v5
207207
- uses: actions/setup-python@v5
208208
with:
209209
python-version: "3.x"
@@ -223,7 +223,7 @@ jobs:
223223
runs-on: ubuntu-24.04
224224
timeout-minutes: 180
225225
steps:
226-
- uses: actions/checkout@v4
226+
- uses: actions/checkout@v5
227227
- uses: actions/setup-python@v5
228228
name: Install Python 3.12
229229
with:

.github/workflows/update-dependencies.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
app-id: ${{ secrets.CIBUILDWHEEL_BOT_APP_ID }}
3131
private-key: ${{ secrets.CIBUILDWHEEL_BOT_APP_PRIVATE_KEY }}
3232

33-
- uses: actions/checkout@v4
33+
- uses: actions/checkout@v5
3434

3535
- uses: wntrblm/[email protected]
3636

.github/workflows/update-major-minor-tag.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
permissions:
2222
contents: write
2323
steps:
24-
- uses: actions/checkout@v4
24+
- uses: actions/checkout@v5
2525

2626
- name: Update the ${{ env.TAG_NAME }} tag
2727
id: update-major-minor-tag

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ jobs:
9191
os: [ubuntu-latest, ubuntu-24.04-arm, windows-latest, windows-11-arm, macos-13, macos-latest]
9292

9393
steps:
94-
- uses: actions/checkout@v4
94+
- uses: actions/checkout@v5
9595

9696
# Used to host cibuildwheel
9797
- uses: actions/setup-python@v5

docs/deliver-to-pypi.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ GitHub actions has pipx in all the runners as a supported package manager, as we
2929
name: Make SDist
3030
runs-on: ubuntu-latest
3131
steps:
32-
- uses: actions/checkout@v4
32+
- uses: actions/checkout@v5
3333
with:
3434
fetch-depth: 0 # Optional, use if you use setuptools_scm
3535
submodules: true # Optional, use if you have submodules
@@ -54,7 +54,7 @@ Then, you need to publish the artifacts that the previous jobs have built. This
5454
runs-on: ubuntu-latest
5555
if: github.event_name == 'release' && github.event.action == 'published'
5656
steps:
57-
- uses: actions/download-artifact@v4
57+
- uses: actions/download-artifact@v5
5858
with:
5959
pattern: cibw-*
6060
path: dist

examples/github-deploy.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
platform: pyodide
4646

4747
steps:
48-
- uses: actions/checkout@v4
48+
- uses: actions/checkout@v5
4949

5050
# GitHub Actions can't currently run the Android emulator on macOS.
5151
- name: Skip Android tests on macOS
@@ -79,7 +79,7 @@ jobs:
7979
name: Build source distribution
8080
runs-on: ubuntu-latest
8181
steps:
82-
- uses: actions/checkout@v4
82+
- uses: actions/checkout@v5
8383

8484
- name: Build sdist
8585
run: pipx run build --sdist
@@ -99,7 +99,7 @@ jobs:
9999
# or, alternatively, upload to PyPI on every tag starting with 'v' (remove on: release above to use this)
100100
# if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
101101
steps:
102-
- uses: actions/download-artifact@v4
102+
- uses: actions/download-artifact@v5
103103
with:
104104
# unpacks all CIBW artifacts into dist/
105105
pattern: cibw-*

examples/github-minimal.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
os: [ubuntu-latest, ubuntu-24.04-arm, windows-latest, windows-11-arm, macos-13, macos-14]
1313

1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v5
1616

1717
- name: Build wheels
1818
uses: pypa/[email protected]

examples/github-pipx.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
os: [ubuntu-latest, ubuntu-24.04-arm, windows-latest, windows-11-arm, macos-13, macos-14]
1313

1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v5
1616

1717
- name: Build wheels
1818
run: pipx run cibuildwheel==3.1.3

examples/github-with-qemu.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
os: [ubuntu-latest, ubuntu-24.04-arm, windows-latest, windows-11-arm, macos-13, macos-14]
1313

1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v5
1616

1717
- name: Set up QEMU
1818
if: runner.os == 'Linux' && runner.arch == 'X64'

0 commit comments

Comments
 (0)