Skip to content

Commit

Permalink
gha: add go1.19, drop go1.16
Browse files Browse the repository at this point in the history
Both go1.16 and go1.17 reached EOL, but keeping go1.17 for now, for
projects that haven't updated yet.

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
  • Loading branch information
thaJeztah committed Oct 5, 2022
1 parent 217f530 commit f737a7f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: 1.18.x
go-version: 1.19.x
- uses: golangci/golangci-lint-action@v3
with:
version: v1.49
Expand All @@ -50,7 +50,7 @@ jobs:
strategy:
fail-fast: false
matrix:
go-version: [1.16.x, 1.17.x, 1.18.x]
go-version: [1.17.x, 1.18.x, 1.19.x]
race: ["-race", ""]
runs-on: ubuntu-20.04
steps:
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module github.com/opencontainers/selinux

go 1.13
go 1.17

require golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8
1 change: 1 addition & 0 deletions vendor/modules.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8
## explicit; go 1.17
golang.org/x/sys/internal/unsafeheader
golang.org/x/sys/unix

0 comments on commit f737a7f

Please sign in to comment.