Skip to content

Commit 0b86aae

Browse files
committed
update workflows to fix 20.04 deprecation
1 parent 807209a commit 0b86aae

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/build.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ on:
88

99
jobs:
1010
build:
11-
runs-on: ubuntu-20.04
11+
runs-on: ubuntu-22.04
1212
steps:
1313
- uses: actions/checkout@v4
1414

1515
- name: Set up Go
1616
uses: actions/setup-go@v5
1717
with:
18-
go-version: "1.22"
18+
go-version: "1.23"
1919

2020
- name: Run GoReleaser
2121
uses: goreleaser/goreleaser-action@v5

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Set up Go
1818
uses: actions/setup-go@v5
1919
with:
20-
go-version: "1.22"
20+
go-version: "1.23"
2121
- name: Run GoReleaser
2222
uses: goreleaser/goreleaser-action@v5
2323
with:

0 commit comments

Comments
 (0)