Skip to content

Commit db49770

Browse files
committed
chore: update actions to latest versions in CI and publish workflows
1 parent 98decf9 commit db49770

2 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/ci.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -38,17 +38,17 @@ jobs:
3838

3939
steps:
4040
- name: Check out the repository
41-
uses: actions/checkout@v5
41+
uses: actions/checkout@v6
4242
with:
4343
fetch-depth: 0
4444

4545
- name: Set up Python ${{ matrix.python }}
46-
uses: actions/setup-python@v5
46+
uses: actions/setup-python@v6
4747
with:
4848
python-version: ${{ matrix.python }}
4949

5050
- name: Install uv
51-
uses: astral-sh/setup-uv@v6
51+
uses: astral-sh/setup-uv@v7
5252
with:
5353
version: "0.8.3"
5454
enable-cache: true
@@ -61,7 +61,7 @@ jobs:
6161

6262
- name: Upload coverage data
6363
if: matrix.session == 'unit' && matrix.python == '3.13' && matrix.os == 'ubuntu-latest'
64-
uses: actions/upload-artifact@v4
64+
uses: actions/upload-artifact@v6
6565
with:
6666
name: coverage-data
6767
path: .coverage
@@ -74,17 +74,17 @@ jobs:
7474

7575
steps:
7676
- name: Check out the repository
77-
uses: actions/checkout@v5
77+
uses: actions/checkout@v6
7878
with:
7979
fetch-depth: 0
8080

8181
- name: Set up Python 3.13
82-
uses: actions/setup-python@v5
82+
uses: actions/setup-python@v6
8383
with:
8484
python-version: "3.13"
8585

8686
- name: Install uv
87-
uses: astral-sh/setup-uv@v6
87+
uses: astral-sh/setup-uv@v7
8888
with:
8989
version: "0.8.3"
9090
enable-cache: true
@@ -93,7 +93,7 @@ jobs:
9393
run: uv tool install nox
9494

9595
- name: Download coverage data
96-
uses: actions/download-artifact@v4
96+
uses: actions/download-artifact@v7
9797
with:
9898
name: coverage-data
9999

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Checkout
17-
uses: actions/checkout@v5
17+
uses: actions/checkout@v6
1818
with:
1919
fetch-depth: 0
2020

2121
- name: Install uv
22-
uses: astral-sh/setup-uv@v6
22+
uses: astral-sh/setup-uv@v7
2323
with:
2424
version: "0.8.3"
2525
enable-cache: true

0 commit comments

Comments
 (0)