Skip to content

Commit e7dda5d

Browse files
Update release-drafter/release-drafter action to v7 (#32)
* Update release-drafter/release-drafter action to v7 * Fix linter --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Tom Fleet <me@followtheprocess.codes>
1 parent 5343c63 commit e7dda5d

5 files changed

Lines changed: 12 additions & 14 deletions

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
echo "version=$VERSION" >> $GITHUB_OUTPUT
3232
3333
- name: Publish Draft Release
34-
uses: release-drafter/release-drafter@v6
34+
uses: release-drafter/release-drafter@v7
3535
with:
3636
version: ${{ steps.version.outputs.version }}
3737
publish: true

.github/workflows/release_drafter.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,6 @@ on:
44
push:
55
branches:
66
- main
7-
pull_request:
8-
types:
9-
- opened
10-
- reopened
11-
- synchronize
127

138
permissions: {}
149

@@ -22,6 +17,6 @@ jobs:
2217

2318
steps:
2419
- name: Run Release Drafter
25-
uses: release-drafter/release-drafter@v6
20+
uses: release-drafter/release-drafter@v7
2621
env:
2722
GITHUB_TOKEN: ${{ github.token }}

.golangci.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,3 +163,6 @@ linters:
163163

164164
- name: var-naming
165165
disabled: true
166+
167+
- name: package-naming
168+
disabled: true

go.mod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module go.followtheprocess.codes/log
22

3-
go 1.25
3+
go 1.26
44

55
ignore (
66
./docs
@@ -13,6 +13,6 @@ require (
1313
)
1414

1515
require (
16-
golang.org/x/sys v0.38.0 // indirect
17-
golang.org/x/term v0.37.0 // indirect
16+
golang.org/x/sys v0.42.0 // indirect
17+
golang.org/x/term v0.41.0 // indirect
1818
)

go.sum

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ go.followtheprocess.codes/test v1.1.0 h1:1v2JyMd3STr7dIXzcHEhct2qvS8/mTtGYbSyhpR
66
go.followtheprocess.codes/test v1.1.0/go.mod h1:BHZi5SZahJw01xcuc7EgrlyzX7zJLXAWy11rOR9geVw=
77
go.yaml.in/yaml/v4 v4.0.0-rc.3 h1:3h1fjsh1CTAPjW7q/EMe+C8shx5d8ctzZTrLcs/j8Go=
88
go.yaml.in/yaml/v4 v4.0.0-rc.3/go.mod h1:aZqd9kCMsGL7AuUv/m/PvWLdg5sjJsZ4oHDEnfPPfY0=
9-
golang.org/x/sys v0.38.0 h1:3yZWxaJjBmCWXqhN1qh02AkOnCQ1poK6oF+a7xWL6Gc=
10-
golang.org/x/sys v0.38.0/go.mod h1:OgkHotnGiDImocRcuBABYBEXf8A9a87e/uXjp9XT3ks=
11-
golang.org/x/term v0.37.0 h1:8EGAD0qCmHYZg6J17DvsMy9/wJ7/D/4pV/wfnld5lTU=
12-
golang.org/x/term v0.37.0/go.mod h1:5pB4lxRNYYVZuTLmy8oR2BH8dflOR+IbTYFD8fi3254=
9+
golang.org/x/sys v0.42.0 h1:omrd2nAlyT5ESRdCLYdm3+fMfNFE/+Rf4bDIQImRJeo=
10+
golang.org/x/sys v0.42.0/go.mod h1:4GL1E5IUh+htKOUEOaiffhrAeqysfVGipDYzABqnCmw=
11+
golang.org/x/term v0.41.0 h1:QCgPso/Q3RTJx2Th4bDLqML4W6iJiaXFq2/ftQF13YU=
12+
golang.org/x/term v0.41.0/go.mod h1:3pfBgksrReYfZ5lvYM0kSO0LIkAl4Yl2bXOkKP7Ec2A=
1313
golang.org/x/tools v0.39.0 h1:ik4ho21kwuQln40uelmciQPp9SipgNDdrafrYA4TmQQ=
1414
golang.org/x/tools v0.39.0/go.mod h1:JnefbkDPyD8UU2kI5fuf8ZX4/yUeh9W877ZeBONxUqQ=

0 commit comments

Comments
 (0)