File tree Expand file tree Collapse file tree 3 files changed +10
-11
lines changed
Expand file tree Collapse file tree 3 files changed +10
-11
lines changed Original file line number Diff line number Diff line change @@ -2,9 +2,9 @@ name: build
22
33on :
44 push :
5- branches : [ main ]
5+ branches : [main]
66 pull_request :
7- branches : [ main ]
7+ branches : [main]
88 workflow_dispatch :
99
1010permissions :
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 :
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
5252 with :
5353 fail_ci_if_error : true
5454 files : ./coverage.out
55- token : ${{ secrets.CODECOV_TOKEN }}
55+ token : ${{ secrets.CODECOV_TOKEN }}
Original file line number Diff line number Diff line change 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.
Original file line number Diff line number Diff line change @@ -3,13 +3,12 @@ name: release
33on :
44 push :
55 tags :
6- - ' v* '
6+ - " v* "
77 workflow_dispatch :
88
99permissions :
1010 contents : read
1111
12-
1312jobs :
1413 goreleaser :
1514 permissions :
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
You can’t perform that action at this time.
0 commit comments