Skip to content

Commit 68277fe

Browse files
dependabot[bot]dalito
authored andcommitted
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 9cff67b commit 68277fe

4 files changed

Lines changed: 11 additions & 11 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
@@ -41,23 +41,23 @@ jobs:
4141
runs-on: ubuntu-latest
4242
timeout-minutes: 10
4343
steps:
44-
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0
44+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1
4545
with:
4646
# Using fetch-depth 0 is the only way to get all tags which are needed for building docs.
4747
fetch-depth: 0
4848
# Be specific about keeping credentials (it is the default)
4949
persist-credentials: true
5050

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

60-
- uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1
60+
- uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97
6161
with:
6262
python-version: '3.13'
6363

.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

.github/workflows/test-demo-notebooks.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@ jobs:
3030
os: [ubuntu-latest, windows-latest]
3131
python-version: ["3.10", "3.14"]
3232
steps:
33-
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0
33+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1
3434
with:
3535
persist-credentials: false
3636

37-
- uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1
37+
- uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97
3838
with:
3939
python-version: ${{ matrix.python-version }}
4040

0 commit comments

Comments
 (0)