Skip to content

Commit 4b4ba8f

Browse files
committed
chore: update GitHub Actions configuration
- Update release-drafter to version 6 - Update setup-go to version 5 - Update checkout to version 4 - Update golangci-lint-action to version 4 - Remove unused steps and configurations
1 parent f1d2305 commit 4b4ba8f

File tree

3 files changed

+6
-8
lines changed

3 files changed

+6
-8
lines changed

.github/release-drafter.yml

-2
Original file line numberDiff line numberDiff line change
@@ -65,5 +65,3 @@ version-resolver:
6565

6666
exclude-labels:
6767
- 'skip-changelog'
68-
69-
change-template: '- [#$NUMBER](https://github.com/keloran/go-healthcheck/pull/$NUMBER) $TITLE (@$AUTHOR)'

.github/workflows/drafter.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ jobs:
88
update_release_draft:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: release-drafter/release-drafter@v5
11+
- uses: release-drafter/release-drafter@v6
1212
env:
1313
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/pulls.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@ jobs:
1515
timeout-minutes: 5
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/setup-go@v3
18+
- uses: actions/setup-go@v5
1919
with:
20-
go-version: 1.16.x
21-
- uses: actions/checkout@v1
20+
go-version: 1.22.x
21+
- uses: actions/checkout@v4
2222
with:
2323
fetch-depth: 1
24-
- uses: golangci/golangci-lint-action@v3
24+
- uses: golangci/golangci-lint-action@v4
2525
with:
26-
version: v1.46
26+
version: v1.56
2727
args: --config ./golangci.yml
2828
- name: test
2929
run: go test -v -race -bench=./... -benchmem -timeout=120s ./...

0 commit comments

Comments
 (0)