We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81544b0 commit 7223bf6Copy full SHA for 7223bf6
.github/workflows/test.yml
@@ -10,8 +10,11 @@ jobs:
10
- uses: actions/checkout@v4
11
12
- name: Set up Go
13
- uses: actions/setup-go@v5
+ uses: actions/setup-go@v6
14
with:
15
+ # Not necessary to upload cache on self-hosted runner(s)
16
+ # ~/go/pkg/mod and ~/.cache/go-build stay on disk between runs automatically.
17
+ cache: false
18
go-version: '1.25'
19
20
- name: Install dependencies
.goreleaser.yaml
@@ -52,7 +52,8 @@ checksum:
52
name_template: 'checksums.txt'
53
54
changelog:
55
- sort: asc
+ # Sort chronologically
56
+ sort: ""
57
filters:
58
exclude:
59
- '^docs:'
0 commit comments