Skip to content
Merged
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
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

# A released Go is needed only to `go install` and bootstrap gotip.
- name: Install bootstrap Go
uses: actions/setup-go@v5
uses: actions/setup-go@v6
with:
go-version: stable
cache: false
Expand All @@ -35,7 +35,7 @@ jobs:
# newer gotip commit.
- name: Cache gotip toolchain
id: cache-gotip
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
~/sdk/gotip
Expand All @@ -53,7 +53,7 @@ jobs:

# Module + build cache for faster test runs.
- name: Cache Go modules and build
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
~/.cache/go-build
Expand Down