Skip to content

Commit 693654f

Browse files
sararobcopybara-github
authored andcommitted
chore: Update GitHub Actions workflows to use Node 24
PiperOrigin-RevId: 944035488
1 parent 8bdc808 commit 693654f

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

.github/workflows/presubmit.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,10 @@ jobs:
88
matrix:
99
node: [20, 22, 24]
1010
steps:
11-
- uses: actions/checkout@v4
11+
- uses: actions/checkout@v5
12+
- uses: actions/setup-node@v4
13+
with:
14+
node-version: ${{ matrix.node }}
1215
- uses: pnpm/action-setup@v2
1316
with:
1417
version: ^6.24.1

.kokoro/test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ npm test
3939

4040
# codecov combines coverage across integration and unit tests. Include
4141
# the logic below for any environment you wish to collect coverage for:
42-
COVERAGE_NODE=22
42+
COVERAGE_NODE=24
4343
if npx check-node-version@3.3.0 --silent --node $COVERAGE_NODE; then
4444
NYC_BIN=./node_modules/nyc/bin/nyc.js
4545
if [ -f "$NYC_BIN" ]; then

0 commit comments

Comments
 (0)