Skip to content

Commit e686d70

Browse files
dependabot[bot]stotko
authored andcommitted
Bump the actions group across 1 directory with 3 updates
Bumps the 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: actions - dependency-name: actions/setup-python dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/download-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 539ff02 commit e686d70

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
runs-on: ${{ matrix.os }}
2727

2828
steps:
29-
- uses: actions/checkout@v4
29+
- uses: actions/checkout@v5
3030

3131
- name: Free Disk Space (Ubuntu)
3232
uses: jlumbroso/free-disk-space@main
@@ -40,7 +40,7 @@ jobs:
4040
swap-storage: false
4141

4242
- name: Set up Python ${{ matrix.python }}
43-
uses: actions/setup-python@v5
43+
uses: actions/setup-python@v6
4444
with:
4545
python-version: ${{ matrix.python }}
4646
cache: "pip"

.github/workflows/docs.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: ubuntu-22.04 # "ubuntu-24.04" # Postponed as long as testing against CUDA 12.1, needs 12.6+
2323

2424
steps:
25-
- uses: actions/checkout@v4
25+
- uses: actions/checkout@v5
2626

2727
- name: Free Disk Space (Ubuntu)
2828
uses: jlumbroso/free-disk-space@main
@@ -36,7 +36,7 @@ jobs:
3636
swap-storage: false
3737

3838
- name: Set up Python
39-
uses: actions/setup-python@v5
39+
uses: actions/setup-python@v6
4040
with:
4141
python-version: "3.13"
4242
cache: "pip"
@@ -75,9 +75,9 @@ jobs:
7575
contents: write
7676

7777
steps:
78-
- uses: actions/checkout@v4
78+
- uses: actions/checkout@v5
7979

80-
- uses: actions/download-artifact@v4
80+
- uses: actions/download-artifact@v5
8181
with:
8282
name: Docs HTML
8383
path: build/docs/html

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ jobs:
2323
runs-on: ubuntu-24.04
2424

2525
steps:
26-
- uses: actions/checkout@v4
26+
- uses: actions/checkout@v5
2727

2828
- name: Set up Python ${{ matrix.python }}
29-
uses: actions/setup-python@v5
29+
uses: actions/setup-python@v6
3030
with:
3131
python-version: ${{ matrix.python }}
3232
cache: "pip"

.github/workflows/pypi.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: ubuntu-24.04
2323

2424
steps:
25-
- uses: actions/checkout@v4
25+
- uses: actions/checkout@v5
2626

2727
- uses: hynek/build-and-inspect-python-package@v2
2828

@@ -42,7 +42,7 @@ jobs:
4242
id-token: write
4343

4444
steps:
45-
- uses: actions/download-artifact@v4
45+
- uses: actions/download-artifact@v5
4646
with:
4747
name: Packages
4848
path: dist
@@ -67,7 +67,7 @@ jobs:
6767
id-token: write
6868

6969
steps:
70-
- uses: actions/download-artifact@v4
70+
- uses: actions/download-artifact@v5
7171
with:
7272
name: Packages
7373
path: dist

0 commit comments

Comments
 (0)