Skip to content
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/workflows/buf-binary-size.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: checkout
uses: actions/checkout@v7
- name: setup-go
uses: actions/setup-go@v6
uses: actions/setup-go@v7
with:
go-version: "1.26.x"
check-latest: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-and-draft-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
with:
token: ${{ steps.app_token.outputs.token }}
- name: Set up Go
uses: actions/setup-go@v6
uses: actions/setup-go@v7
with:
go-version: "1.26.x"
check-latest: true
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: checkout
uses: actions/checkout@v7
- name: setup-go
uses: actions/setup-go@v6
uses: actions/setup-go@v7
with:
go-version: "1.26.x"
check-latest: true
Expand Down Expand Up @@ -48,7 +48,7 @@ jobs:
- name: make-lint
run: make lint
env:
# actions/setup-go@v6 exports GOTOOLCHAIN=local via $GITHUB_ENV; override at the
# actions/setup-go@v7 exports GOTOOLCHAIN=local via $GITHUB_ENV; override at the
# step level so go.mod's `go` directive can bootstrap a newer toolchain via the
# module proxy when the runner image lags behind.
GOTOOLCHAIN: auto
Expand All @@ -61,7 +61,7 @@ jobs:
- name: checkout
uses: actions/checkout@v7
- name: setup-go
uses: actions/setup-go@v6
uses: actions/setup-go@v7
with:
go-version: "1.26.x"
check-latest: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: checkout
uses: actions/checkout@v7
- name: setup-go
uses: actions/setup-go@v6
uses: actions/setup-go@v7
with:
go-version: "1.26.x"
check-latest: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/make-upgrade.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
with:
token: ${{ steps.app_token.outputs.token }}
- name: setup-go
uses: actions/setup-go@v6
uses: actions/setup-go@v7
with:
go-version: "1.26.x"
check-latest: true
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/previous.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: checkout
uses: actions/checkout@v7
- name: setup-go
uses: actions/setup-go@v6
uses: actions/setup-go@v7
with:
go-version: ${{ matrix.go-version }}
check-latest: true
Expand All @@ -42,7 +42,7 @@ jobs:
- name: make-test
run: make test
env:
# actions/setup-go@v6 exports GOTOOLCHAIN=local via $GITHUB_ENV; override at the
# actions/setup-go@v7 exports GOTOOLCHAIN=local via $GITHUB_ENV; override at the
# step level so go.mod's `go` directive can bootstrap a newer toolchain via the
# module proxy when the runner image lags behind.
GOTOOLCHAIN: auto
2 changes: 1 addition & 1 deletion .github/workflows/windows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: checkout
uses: actions/checkout@v7
- name: setup-go
uses: actions/setup-go@v6
uses: actions/setup-go@v7
with:
go-version: "1.26.x"
check-latest: true
Expand Down
Loading