Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Set up Python 3.10
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: '3.10'
- name: Install dependencies
Expand All @@ -20,7 +20,7 @@ jobs:
echo $PYTHONPATH
python -c "import sys; print(sys.path)"
- name: Cache bazel
uses: actions/cache@v3
uses: actions/cache@v5
env:
cache-name: bazel-cache
with:
Expand All @@ -29,7 +29,7 @@ jobs:
~/.cache/bazel
key: ${{ runner.os }}-${{ env.cache-name }}-${{ github.ref }}
restore-keys: ${{ runner.os }}-${{ env.cache-name }}-development
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Build
run: bazel build --define jsonnet_port=cpp //...
- name: Test Checker
Expand Down
Loading