Skip to content

Commit bfec024

Browse files
authored
ci: upgrade actions for Node 24 compatibility (#43)
1 parent c176b8e commit bfec024

2 files changed

Lines changed: 7 additions & 4 deletions

File tree

.github/workflows/linter.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,11 @@ jobs:
2424
pre-commit:
2525
runs-on: ubuntu-latest
2626
steps:
27-
- uses: actions/checkout@v4
28-
- uses: actions/setup-python@v5
27+
- uses: actions/checkout@v5
28+
- uses: actions/setup-python@v6
2929
with:
3030
python-version: '3.x'
3131
- uses: pre-commit/action@v3.0.1
32+
env:
33+
# workaround for pre-commit/action not being updated to node24
34+
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ jobs:
1818
contents: read
1919
steps:
2020
- name: Checkout code
21-
uses: actions/checkout@v4
21+
uses: actions/checkout@v5
2222

2323
# Installs uv (and manages Python automatically)
2424
- name: Install uv
25-
uses: astral-sh/setup-uv@v5
25+
uses: astral-sh/setup-uv@v8.2.0
2626
with:
2727
enable-cache: true
2828

0 commit comments

Comments
 (0)