Skip to content

Commit f13a6ce

Browse files
Bump the actions group with 2 updates
Bumps the 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 6.0.3 to 7.0.0 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v6.0.3...v7.0.0) Updates `actions/setup-python` from 6 to 6.2.0 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v6...v6.2.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 7.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/setup-python dependency-version: 6.2.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 66a6357 commit f13a6ce

6 files changed

Lines changed: 12 additions & 12 deletions

File tree

.github/workflows/array-api-tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,19 +49,19 @@ jobs:
4949

5050
steps:
5151
- name: Checkout array-api-compat
52-
uses: actions/checkout@v6.0.3
52+
uses: actions/checkout@v7.0.0
5353
with:
5454
path: array-api-compat
5555

5656
- name: Checkout array-api-tests
57-
uses: actions/checkout@v6.0.3
57+
uses: actions/checkout@v7.0.0
5858
with:
5959
repository: data-apis/array-api-tests
6060
submodules: 'true'
6161
path: array-api-tests
6262

6363
- name: Set up Python ${{ matrix.python-version }}
64-
uses: actions/setup-python@v6
64+
uses: actions/setup-python@v6.2.0
6565
with:
6666
python-version: ${{ matrix.python-version }}
6767

.github/workflows/docs-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ jobs:
66
docs-build:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v6.0.3
10-
- uses: actions/setup-python@v6
9+
- uses: actions/checkout@v7.0.0
10+
- uses: actions/setup-python@v6.2.0
1111
- name: Install Dependencies
1212
run: |
1313
python -m pip install --upgrade pip

.github/workflows/docs-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
environment:
1212
name: docs-deploy
1313
steps:
14-
- uses: actions/checkout@v6.0.3
14+
- uses: actions/checkout@v7.0.0
1515
- name: Download Artifact
1616
uses: dawidd6/action-download-artifact@v21
1717
with:

.github/workflows/publish-package.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@ jobs:
3030
runs-on: ubuntu-latest
3131

3232
steps:
33-
- uses: actions/checkout@v6.0.3
33+
- uses: actions/checkout@v7.0.0
3434
with:
3535
fetch-depth: 0
3636

3737
- name: Set up Python
38-
uses: actions/setup-python@v6
38+
uses: actions/setup-python@v6.2.0
3939
with:
4040
python-version: '3.x'
4141

.github/workflows/ruff.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ jobs:
55
runs-on: ubuntu-latest
66
continue-on-error: true
77
steps:
8-
- uses: actions/checkout@v6.0.3
8+
- uses: actions/checkout@v7.0.0
99
- name: Install Python
10-
uses: actions/setup-python@v6
10+
uses: actions/setup-python@v6.2.0
1111
with:
1212
python-version: "3.11"
1313
- name: Install dependencies

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ jobs:
2727
python-version: '3.14'
2828

2929
steps:
30-
- uses: actions/checkout@v6.0.3
31-
- uses: actions/setup-python@v6
30+
- uses: actions/checkout@v7.0.0
31+
- uses: actions/setup-python@v6.2.0
3232
with:
3333
python-version: ${{ matrix.python-version }}
3434
- name: Install Dependencies

0 commit comments

Comments
 (0)