Skip to content

Commit 5060bb8

Browse files
committed
chore(ci): go 1.26
1 parent dfdc3bc commit 5060bb8

3 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ jobs:
88
lint:
99
runs-on: ubuntu-latest
1010
env:
11-
GO_VERSION: "1.25"
11+
GO_VERSION: "1.26"
1212
steps:
1313
- name: Set up Go ${{ env.GO_VERSION }}
1414
uses: actions/setup-go@v6
1515
with:
1616
go-version: ${{ env.GO_VERSION }}
1717

1818
- name: Check out code
19-
uses: actions/checkout@v5
19+
uses: actions/checkout@v6
2020
with:
2121
fetch-depth: 0
2222

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout code
13-
uses: actions/checkout@v4
13+
uses: actions/checkout@v6
1414

1515
- name: Set up Go
16-
uses: actions/setup-go@v5
16+
uses: actions/setup-go@v6
1717
with:
18-
go-version: "1.25"
18+
go-version: "1.26"
1919

2020
- name: Run GoReleaser
21-
uses: goreleaser/goreleaser-action@v4
21+
uses: goreleaser/goreleaser-action@v7
2222
with:
2323
args: release
2424
env:

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,19 @@ jobs:
88
test:
99
strategy:
1010
matrix:
11-
go-version: ["1.25.x"]
11+
go-version: ["1.26.x"]
1212
platform: [ubuntu-latest, macos-latest, windows-latest]
1313
runs-on: "${{ matrix.platform }}"
1414
env:
1515
CGO_ENABLED: 0
1616
steps:
1717
- name: Setup Go ${{ matrix.go-version }}
18-
uses: actions/setup-go@v5
18+
uses: actions/setup-go@v6
1919
with:
2020
go-version: ${{ matrix.go-version }}
2121

2222
- name: Checkout code
23-
uses: actions/checkout@v4
23+
uses: actions/checkout@v6
2424
with:
2525
fetch-depth: 0
2626

0 commit comments

Comments
 (0)