Skip to content

Commit 7deaa0e

Browse files
authored
chore: update to Go 1.22 (#196)
1 parent a5374cb commit 7deaa0e

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/go-test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
name: go-test
1414
strategy:
1515
matrix:
16-
go-version: [1.21.x, 1.22.x]
16+
go-version: [1.22.x, 1.23.x]
1717
# XXX: is it actually useful to run unit tests on macOS?
1818
platform: [ubuntu-latest, macos-latest]
1919
runs-on: ${{ matrix.platform }}

.github/workflows/golangci-lint.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- uses: actions/checkout@v4
2323
- uses: actions/setup-go@v5
2424
with:
25-
go-version: 1.21.x
25+
go-version: 1.22.x
2626
cache: false
2727
- name: golangci-lint
2828
uses: golangci/golangci-lint-action@v6

.github/workflows/publish.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
- uses: actions/checkout@v4
5151
- uses: actions/setup-go@v5
5252
with:
53-
go-version: 1.21.x
53+
go-version: 1.22.x
5454
- name: Build binary
5555
run: GOOS=${{ matrix.os }} GOARCH=${{ matrix.arch }} make build
5656
- name: Upload release asset

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/blinklabs-io/cdnsd
22

3-
go 1.21
3+
go 1.22
44

55
require (
66
github.com/blinklabs-io/adder v0.23.1

0 commit comments

Comments
 (0)