Skip to content

Commit a7d77c9

Browse files
author
Motalleb Fallahnezhad
committed
fix: bump go version in workflows
1 parent 4a90085 commit a7d77c9

File tree

3 files changed

+10
-11
lines changed

3 files changed

+10
-11
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: build
22

33
on:
44
push:
5-
branches: [ main ]
5+
branches: [main]
66
pull_request:
7-
branches: [ main ]
7+
branches: [main]
88
workflow_dispatch:
99

1010
permissions:
@@ -15,7 +15,7 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
os: [ ubuntu-latest, macos-latest, windows-latest ]
18+
os: [ubuntu-latest, macos-latest, windows-latest]
1919
runs-on: ${{ matrix.os }}
2020
defaults:
2121
run:
@@ -25,7 +25,7 @@ jobs:
2525

2626
- uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
2727
with:
28-
go-version: '1.24'
28+
go-version: "1.25"
2929
check-latest: true
3030

3131
- name: Build
@@ -52,4 +52,4 @@ jobs:
5252
with:
5353
fail_ci_if_error: true
5454
files: ./coverage.out
55-
token: ${{ secrets.CODECOV_TOKEN }}
55+
token: ${{ secrets.CODECOV_TOKEN }}

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434

3535
- uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
3636
with:
37-
go-version: '1.24'
37+
go-version: '1.25'
3838
check-latest: true
3939

4040
# Initializes the CodeQL tools for scanning.

.github/workflows/release.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,12 @@ name: release
33
on:
44
push:
55
tags:
6-
- 'v*'
6+
- "v*"
77
workflow_dispatch:
88

99
permissions:
1010
contents: read
1111

12-
1312
jobs:
1413
goreleaser:
1514
permissions:
@@ -23,7 +22,7 @@ jobs:
2322

2423
- uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
2524
with:
26-
go-version: '1.24'
25+
go-version: "1.25"
2726
check-latest: true
2827

2928
- name: Login to GitHub Container Registry
@@ -34,12 +33,12 @@ jobs:
3433
password: ${{ secrets.GITHUB_TOKEN }}
3534
- run: |
3635
go install github.com/goreleaser/goreleaser/v2@latest
37-
goreleaser release
36+
goreleaser release
3837
env:
3938
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4039
4140
- name: Upload dist
4241
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
4342
with:
4443
name: dist
45-
path: dist
44+
path: dist

0 commit comments

Comments
 (0)