Skip to content

Commit 41176ad

Browse files
committed
chore(INF-912): bump deprecated node20 actions to node24 successors
GitHub is forcing JavaScript actions onto Node 24 from 2 June 2026 and removing the Node 20 runtime on 16 September 2026. This bumps every action pin in this repo whose current major still ships using: node20 to its node24 successor, and adds/standardises the dependabot github-actions config so this stays current. Bumps: - actions/checkout@v4 -> v5 - orgoro/coverage@v3.2 -> v4 Ref: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
1 parent 05d00e2 commit 41176ad

2 files changed

Lines changed: 12 additions & 2 deletions

File tree

.github/dependabot.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: github-actions
4+
directory: /
5+
schedule:
6+
interval: weekly
7+
groups:
8+
github-actions:
9+
patterns:
10+
- "*"

.github/workflows/deploy.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
id-token: write
1818
pull-requests: write
1919
steps:
20-
- uses: actions/checkout@v4
20+
- uses: actions/checkout@v5
2121
- name: Setup uv
2222
uses: astral-sh/setup-uv@v6
2323
with:
@@ -27,7 +27,7 @@ jobs:
2727
- name: Run pytest
2828
run: uv run pytest --cov=git_hooks --cov-report=xml:coverage.xml --durations=10
2929
- name: Get Cover
30-
uses: orgoro/coverage@v3.2
30+
uses: orgoro/coverage@v3.3.1
3131
if: ${{ github.event_name == 'pull_request' }}
3232
with:
3333
coverageFile: coverage.xml

0 commit comments

Comments
 (0)