Skip to content

Commit 3a2fec4

Browse files
committed
Upgrade GitHub Actions for Node 24 compatibility
1 parent 59530e6 commit 3a2fec4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
- name: Set up Python 3.10
11-
uses: actions/setup-python@v5
11+
uses: actions/setup-python@v6
1212
with:
1313
python-version: '3.10'
1414
- name: Install dependencies
@@ -20,7 +20,7 @@ jobs:
2020
echo $PYTHONPATH
2121
python -c "import sys; print(sys.path)"
2222
- name: Cache bazel
23-
uses: actions/cache@v3
23+
uses: actions/cache@v5
2424
env:
2525
cache-name: bazel-cache
2626
with:
@@ -29,7 +29,7 @@ jobs:
2929
~/.cache/bazel
3030
key: ${{ runner.os }}-${{ env.cache-name }}-${{ github.ref }}
3131
restore-keys: ${{ runner.os }}-${{ env.cache-name }}-development
32-
- uses: actions/checkout@v4
32+
- uses: actions/checkout@v6
3333
- name: Build
3434
run: bazel build --define jsonnet_port=cpp //...
3535
- name: Test Checker

0 commit comments

Comments
 (0)