Skip to content

Commit b8e2f1c

Browse files
Bump the github-actions group across 1 directory with 3 updates
Bumps the github-actions group with 3 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/setup-python](https://github.com/actions/setup-python) 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/setup-python` from 5 to 6 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v5...v6) 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/setup-python dependency-version: '6' 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] <support@github.com>
1 parent 574c65d commit b8e2f1c

6 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/docs-final.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515

1616
steps:
1717
- name: Checkout
18-
uses: actions/checkout@v4
18+
uses: actions/checkout@v5
1919
with:
2020
fetch-depth: 0
2121

.github/workflows/docs-preview.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
runs-on: ubuntu-latest
2121
steps:
2222
- name: Checkout
23-
uses: actions/checkout@v4
23+
uses: actions/checkout@v5
2424
with:
2525
fetch-depth: 0
2626

.github/workflows/release.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
package: ${{ steps.bump-version.outputs.package }}
3131
tag-name: ${{ steps.bump-version.outputs.tag-name }}
3232
steps:
33-
- uses: actions/checkout@v4
33+
- uses: actions/checkout@v5
3434
name: Checkout the repository
3535
with:
3636
fetch-depth: 0
@@ -114,13 +114,13 @@ jobs:
114114
contents: write
115115
steps:
116116
- name: Download packages built by build-and-inspect-python-package
117-
uses: actions/download-artifact@v4
117+
uses: actions/download-artifact@v5
118118
with:
119119
name: Packages
120120
path: dist
121121

122122
- name: Download release notes
123-
uses: actions/download-artifact@v4
123+
uses: actions/download-artifact@v5
124124
with:
125125
name: release-notes
126126

.github/workflows/test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- "3.13"
3131
runs-on: ${{ matrix.os }}
3232
steps:
33-
- uses: actions/checkout@v4
33+
- uses: actions/checkout@v5
3434
- uses: ./.github/actions/setup-python-and-git
3535
with:
3636
python-version: ${{ matrix.python-version }}
@@ -60,7 +60,7 @@ jobs:
6060
permissions:
6161
id-token: write
6262
steps:
63-
- uses: actions/checkout@v4
63+
- uses: actions/checkout@v5
6464
with:
6565
fetch-depth: 0
6666
ref: ${{ github.head_ref }}

.github/workflows/version-preview.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
preview-version-hint:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v4
11+
- uses: actions/checkout@v5
1212
name: Checkout the repository
1313
with:
1414
fetch-depth: 0

action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ runs:
3131
using: 'composite'
3232
steps:
3333
- name: Checkout the code
34-
uses: actions/checkout@v4
34+
uses: actions/checkout@v5
3535
with:
3636
persist-credentials: false
3737
- name: Setting up git config
@@ -43,7 +43,7 @@ runs:
4343
git config --global user.name "$(gh api /users/${GITHUB_ACTOR} | jq .name -r)"
4444
git config -l
4545
- name: Install Python
46-
uses: actions/setup-python@v5
46+
uses: actions/setup-python@v6
4747
with:
4848
python-version: '3.12'
4949
cache: 'pip'

0 commit comments

Comments
 (0)