Skip to content

Commit ba2b02b

Browse files
committed
bump to Go 1.23 and update GHA step versions
1 parent 4736409 commit ba2b02b

File tree

3 files changed

+12
-9
lines changed

3 files changed

+12
-9
lines changed

.github/workflows/go.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: Check out code into the Go module directory
12-
uses: actions/checkout@v3
12+
uses: actions/checkout@v4
1313

1414
- name: Set up Go
15-
uses: actions/setup-go@v4
15+
uses: actions/setup-go@v5
1616
with:
17-
go-version: '1.19'
17+
go-version: '1.24'
1818
check-latest: true
1919
id: go
2020

@@ -32,10 +32,10 @@ jobs:
3232
runs-on: ubuntu-latest
3333
steps:
3434
- name: Check out code into the Go module directory
35-
uses: actions/checkout@v3
35+
uses: actions/checkout@v4
3636

3737
- name: Run golangci-lint
38-
uses: golangci/golangci-lint-action@v3
38+
uses: golangci/golangci-lint-action@v6
3939

4040
with:
4141
# Exclude deprecated PEM functions from the linter until
@@ -47,12 +47,12 @@ jobs:
4747
runs-on: windows-latest
4848
steps:
4949
- name: Check out code into the Go module directory
50-
uses: actions/checkout@v3
50+
uses: actions/checkout@v4
5151

5252
- name: Set up Go
53-
uses: actions/setup-go@v4
53+
uses: actions/setup-go@v5
5454
with:
55-
go-version: '1.19'
55+
go-version: '1.24'
5656
check-latest: true
5757
id: go
5858

go.mod

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
module github.com/square/certstrap
22

3-
go 1.18
3+
go 1.24
4+
5+
toolchain go1.24.3
46

57
require (
68
github.com/howeyc/gopass v0.0.0-20170109162249-bf9dde6d0d2c

go.sum

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZN
1515
github.com/russross/blackfriday/v2 v2.1.0 h1:JIOH55/0cWyOuilr9/qlrm0BSXldqnqwMsf35Ld67mk=
1616
github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM=
1717
github.com/smallstep/assert v0.0.0-20200723003110-82e2b9b3b262 h1:unQFBIznI+VYD1/1fApl1A+9VcBk+9dcqGfnePY87LY=
18+
github.com/smallstep/assert v0.0.0-20200723003110-82e2b9b3b262/go.mod h1:MyOHs9Po2fbM1LHej6sBUT8ozbxmMOFG+E+rx/GSGuc=
1819
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
1920
github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw=
2021
github.com/stretchr/objx v0.5.0/go.mod h1:Yh+to48EsGEfYuaHDzXPcE3xhTkx73EhmCGUpEOglKo=

0 commit comments

Comments
 (0)