Skip to content

Commit 5afe5be

Browse files
build(deps): 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]>
1 parent f97896b commit 5afe5be

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
# your codebase is analyzed, see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/codeql-code-scanning-for-compiled-languages
6060
steps:
6161
- name: Checkout repository
62-
uses: actions/checkout@v4
62+
uses: actions/checkout@v5
6363

6464
# Initializes the CodeQL tools for scanning.
6565
- name: Initialize CodeQL

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
needs: [test]
2121
runs-on: ubuntu-latest
2222
steps:
23-
- uses: actions/checkout@v4
23+
- uses: actions/checkout@v5
2424
- uses: hynek/build-and-inspect-python-package@v2
2525
with:
2626
upload-name-suffix: "-release"
@@ -31,7 +31,7 @@ jobs:
3131
needs: [build]
3232
runs-on: ubuntu-latest
3333
steps:
34-
- uses: actions/checkout@v4
34+
- uses: actions/checkout@v5
3535
- uses: softprops/action-gh-release@v2
3636
with:
3737
generate_release_notes: true
@@ -47,7 +47,7 @@ jobs:
4747
permissions:
4848
id-token: write
4949
steps:
50-
- uses: actions/download-artifact@v4
50+
- uses: actions/download-artifact@v5
5151
with:
5252
name: Packages
5353
path: dist

.github/workflows/test.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
name: Build and verify package
3232
runs-on: ubuntu-latest
3333
steps:
34-
- uses: actions/checkout@v4
34+
- uses: actions/checkout@v5
3535
with:
3636
fetch-depth: 0 # Needed for setuptools_scm
3737
- uses: hynek/build-and-inspect-python-package@v2
@@ -73,7 +73,7 @@ jobs:
7373
echo today=%mydate% >> %GITHUB_ENV%
7474
shell: cmd
7575

76-
- uses: actions/checkout@v4
76+
- uses: actions/checkout@v5
7777
with:
7878
fetch-depth: 0 # Needed for setuptools_scm
7979

@@ -91,7 +91,7 @@ jobs:
9191
enableCrossOsArchive: true
9292

9393
- name: Download package
94-
uses: actions/download-artifact@v4
94+
uses: actions/download-artifact@v5
9595
with:
9696
name: Packages
9797
path: dist

0 commit comments

Comments
 (0)