Skip to content

Commit 30bd264

Browse files
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/setup-python](https://github.com/actions/setup-python). Updates `actions/checkout` from 7.0.0 to 7.0.1 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@9c091bb...3d3c42e) Updates `actions/setup-python` from 6.3.0 to 7.0.0 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@ece7cb0...5fda3b9) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 7.0.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: actions/setup-python dependency-version: 7.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 1f400c7 commit 30bd264

3 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/ci-pr.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939

4040
steps:
4141
- name: Checkout PR branch into cwd
42-
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0
42+
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1
4343
with:
4444
# Checkout the fork/head-repository to push changes to the fork.
4545
# Without this the base repository will be checked out and committed to.
@@ -52,7 +52,7 @@ jobs:
5252
persist-credentials: true
5353

5454
- name: Checkout main branch into directory _main_branch/
55-
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0
55+
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1
5656
with:
5757
ref: main
5858
path: _main_branch
@@ -63,7 +63,7 @@ jobs:
6363
# Be specific about keeping credentials (it is the default)
6464
persist-credentials: true
6565

66-
- uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1
66+
- uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97
6767
with:
6868
python-version: '3.13'
6969

.github/workflows/merge.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,23 +39,23 @@ jobs:
3939
runs-on: ubuntu-latest
4040
timeout-minutes: 10
4141
steps:
42-
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0
42+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1
4343
with:
4444
# Using fetch-depth 0 is the only way to get all tags which are needed for building docs.
4545
fetch-depth: 0
4646
# Be specific about keeping credentials (it is the default)
4747
persist-credentials: true
4848

4949
- name: Checkout gh-pages branch to dir publish/
50-
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0
50+
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1
5151
with:
5252
ref: gh-pages
5353
path: publish
5454
fetch-depth: 1
5555
# Be specific about keeping credentials (it is the default)
5656
persist-credentials: true
5757

58-
- uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1
58+
- uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97
5959
with:
6060
python-version: '3.13'
6161

.github/workflows/publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,23 +35,23 @@ jobs:
3535
runs-on: ubuntu-latest
3636
timeout-minutes: 10
3737
steps:
38-
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0
38+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1
3939
with:
4040
# Using fetch-depth 0 is the only way to get all tags which are needed for building docs.
4141
fetch-depth: 0
4242
# Be specific about keeping credentials (it is the default)
4343
persist-credentials: true
4444

4545
- name: Checkout gh-pages branch to dir publish/
46-
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0
46+
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1
4747
with:
4848
ref: gh-pages
4949
path: publish
5050
fetch-depth: 1
5151
# Be specific about keeping credentials (it is the default)
5252
persist-credentials: true
5353

54-
- uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1
54+
- uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97
5555
with:
5656
python-version: '3.13'
5757

0 commit comments

Comments
 (0)