Skip to content

Commit 1e6f9c8

Browse files
committed
Bump action versions to Node 24
1 parent 2d5149c commit 1e6f9c8

4 files changed

Lines changed: 13 additions & 13 deletions

File tree

.github/workflows/docs.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@ jobs:
3131

3232
steps:
3333
- name: Checkout repository
34-
uses: actions/checkout@v4
34+
uses: actions/checkout@v6
3535
with:
3636
fetch-depth: 0
3737

3838
- name: Install uv
39-
uses: astral-sh/setup-uv@v6
39+
uses: astral-sh/setup-uv@v8.1.0
4040
with:
4141
enable-cache: true
4242
cache-dependency-glob: uv.lock
@@ -49,11 +49,11 @@ jobs:
4949

5050
- name: Setup Pages
5151
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
52-
uses: actions/configure-pages@v4
52+
uses: actions/configure-pages@v6
5353

5454
- name: Upload artifact
5555
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
56-
uses: actions/upload-pages-artifact@v3
56+
uses: actions/upload-pages-artifact@v5
5757
with:
5858
path: ./site
5959

@@ -68,5 +68,5 @@ jobs:
6868
steps:
6969
- name: Deploy to GitHub Pages
7070
id: deployment
71-
uses: actions/deploy-pages@v4
71+
uses: actions/deploy-pages@v5
7272

.github/workflows/pre-commit.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,16 @@ jobs:
99
pre-commit:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v4
12+
- uses: actions/checkout@v6
1313
- name: Install uv
14-
uses: astral-sh/setup-uv@v6
14+
uses: astral-sh/setup-uv@v8.1.0
1515
with:
1616
enable-cache: true
1717
cache-dependency-glob: uv.lock
1818
- name: Sync dependencies
1919
run: uv sync --locked --no-default-groups --group dev
2020
- name: Cache pre-commit hook environments
21-
uses: actions/cache@v4
21+
uses: actions/cache@v5
2222
with:
2323
path: ~/.cache/pre-commit
2424
key: pre-commit-${{ runner.os }}-${{ hashFiles('.pre-commit-config.yaml') }}

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ jobs:
1212
contents: read
1313
environment: pypi
1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v6
1616
with:
1717
fetch-depth: 0
1818
- name: Install uv
19-
uses: astral-sh/setup-uv@v6
19+
uses: astral-sh/setup-uv@v8.1.0
2020
with:
2121
enable-cache: true
2222
cache-dependency-glob: uv.lock

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ jobs:
1616
env:
1717
UV_PYTHON: ${{ matrix.python-version }}
1818
steps:
19-
- uses: actions/checkout@v4
19+
- uses: actions/checkout@v6
2020
- name: Install uv
21-
uses: astral-sh/setup-uv@v6
21+
uses: astral-sh/setup-uv@v8.1.0
2222
with:
2323
enable-cache: true
2424
cache-dependency-glob: uv.lock
@@ -27,7 +27,7 @@ jobs:
2727
- name: Testing with coverage
2828
run: uv run pytest tests --cov=interpolatepy --cov-report=xml --cov-report=term-missing
2929
- name: Upload coverage to Codecov
30-
uses: codecov/codecov-action@v5
30+
uses: codecov/codecov-action@v6
3131
with:
3232
token: ${{ secrets.CODECOV_TOKEN }}
3333
files: ./coverage.xml

0 commit comments

Comments
 (0)