Skip to content

Commit 5a2a4cf

Browse files
committed
Update github workflows
1 parent 1cdff5a commit 5a2a4cf

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/build.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ env:
2525
2626
jobs:
2727
test:
28-
runs-on: ubuntu-22.04
28+
runs-on: ubuntu-24.04
2929
steps:
3030
- name: Set up Go
3131
uses: actions/setup-go@v3
@@ -43,7 +43,7 @@ jobs:
4343
go test -v ./... -cover -race -coverprofile=coverage.out
4444
go tool cover -func=coverage.out -o=coverage.out
4545
build:
46-
runs-on: ubuntu-22.04
46+
runs-on: ubuntu-24.04
4747
needs: test
4848
steps:
4949
- name: Checkout repo

.github/workflows/release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
- v*
66
jobs:
77
goreleaser:
8-
runs-on: ubuntu-20.04
8+
runs-on: ubuntu-24.04
99
steps:
1010
- name: Checkout
1111
uses: actions/checkout@v2
@@ -19,6 +19,6 @@ jobs:
1919
uses: goreleaser/goreleaser-action@v2
2020
with:
2121
version: latest
22-
args: release --rm-dist
22+
args: release --clean
2323
env:
2424
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)