We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 59530e6 commit 3a2fec4Copy full SHA for 3a2fec4
.github/workflows/ci.yml
@@ -8,7 +8,7 @@ jobs:
8
runs-on: ubuntu-latest
9
steps:
10
- name: Set up Python 3.10
11
- uses: actions/setup-python@v5
+ uses: actions/setup-python@v6
12
with:
13
python-version: '3.10'
14
- name: Install dependencies
@@ -20,7 +20,7 @@ jobs:
20
echo $PYTHONPATH
21
python -c "import sys; print(sys.path)"
22
- name: Cache bazel
23
- uses: actions/cache@v3
+ uses: actions/cache@v5
24
env:
25
cache-name: bazel-cache
26
@@ -29,7 +29,7 @@ jobs:
29
~/.cache/bazel
30
key: ${{ runner.os }}-${{ env.cache-name }}-${{ github.ref }}
31
restore-keys: ${{ runner.os }}-${{ env.cache-name }}-development
32
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v6
33
- name: Build
34
run: bazel build --define jsonnet_port=cpp //...
35
- name: Test Checker
0 commit comments