Skip to content

Commit cca07e0

Browse files
committed
chore: update Go version to 1.26.2 in CI workflows
1 parent a9ff884 commit cca07e0

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Set up Go
2020
uses: actions/setup-go@v5
2121
with:
22-
go-version: '1.26.1'
22+
go-version: '1.26.2'
2323

2424
- name: Install dependencies (Linux)
2525
if: runner.os == 'Linux'
@@ -117,7 +117,7 @@ jobs:
117117
- name: Set up Go
118118
uses: actions/setup-go@v5
119119
with:
120-
go-version: '1.26.1'
120+
go-version: '1.26.2'
121121

122122
- name: Get dependencies
123123
run: go mod download
@@ -180,7 +180,7 @@ jobs:
180180
- name: Set up Go
181181
uses: actions/setup-go@v5
182182
with:
183-
go-version: '1.26.1'
183+
go-version: '1.26.2'
184184

185185
- name: Check out code
186186
uses: actions/checkout@v4

.github/workflows/coverage.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,17 @@ jobs:
1919
- name: Set up Go
2020
uses: actions/setup-go@v5
2121
with:
22-
go-version: '1.26.1'
22+
go-version: '1.26.2'
2323

2424
- name: Cache Go modules
2525
uses: actions/cache@v4
2626
with:
2727
path: |
2828
~/.cache/go-build
2929
~/go/pkg/mod
30-
key: ${{ runner.os }}-go-1.26.1-${{ hashFiles('**/go.sum') }}
30+
key: ${{ runner.os }}-go-1.26.2-${{ hashFiles('**/go.sum') }}
3131
restore-keys: |
32-
${{ runner.os }}-go-1.26.1-
32+
${{ runner.os }}-go-1.26.2-
3333
3434
- name: Install dependencies (Linux)
3535
if: runner.os == 'Linux'

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ permissions:
1212
contents: write
1313

1414
env:
15-
GO_VERSION: '1.26.1'
15+
GO_VERSION: '1.26.2'
1616
BINARY_NAME: goanime
1717

1818
jobs:

0 commit comments

Comments
 (0)