Skip to content

Commit

Permalink
Update to Go 1.19 in actions
Browse files Browse the repository at this point in the history
Signed-off-by: Anastasios Papagiannis <[email protected]>
  • Loading branch information
tpapagian committed Jul 11, 2023
1 parent 2ec931c commit c04b0eb
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 8 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/gotests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@fac708d6674e30b6ba41289acaab6d4b75aa0753 # v4.0.1
with:
go-version: '1.18.3'
go-version: '1.19.6'

- name: Install dependencies
run: |
Expand All @@ -51,6 +51,7 @@ jobs:
GOPATH: ${{ env.GITHUB_WORKSPACE }}/go
SUDO: sudo -E
run: |
go clean -cache -modcache
cd go/src/github.com/cilium/tetragon/
make check-copyright
sudo -E echo "run go tests: " `uname -a`
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run-e2e-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@fac708d6674e30b6ba41289acaab6d4b75aa0753 # v4.0.1
with:
go-version: '1.18.3'
go-version: '1.19.6'

- name: Set Up Job Variables
id: vars
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/static-checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@fac708d6674e30b6ba41289acaab6d4b75aa0753 # v4.0.1
with:
go-version: '1.18.3'
go-version: '1.19.6'
- name: Run static checks
uses: golangci/golangci-lint-action@639cd343e1d3b897ff35927a75193d57cfcba299 # v3.6.0
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/vmtests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@fac708d6674e30b6ba41289acaab6d4b75aa0753 # v4.0.1
with:
go-version: '1.18.3'
go-version: '1.19.6'

- name: Checkout code
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
Expand Down
2 changes: 1 addition & 1 deletion api/vendor/modules.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# github.com/cilium/tetragon v0.0.0-00010101000000-000000000000 => ../../tetragon
## explicit; go 1.18
## explicit; go 1.19
github.com/cilium/tetragon/pkg/matchers/bytesmatcher
github.com/cilium/tetragon/pkg/matchers/listmatcher
github.com/cilium/tetragon/pkg/matchers/stringmatcher
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/cilium/tetragon

go 1.18
go 1.19

require (
github.com/cilium/cilium v1.13.4
Expand Down
2 changes: 1 addition & 1 deletion pkg/k8s/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/cilium/tetragon/pkg/k8s

go 1.18
go 1.19

require (
github.com/blang/semver/v4 v4.0.0
Expand Down
2 changes: 1 addition & 1 deletion vendor/modules.txt
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ github.com/cilium/tetragon/api/v1/tetragon/codegen/eventchecker
github.com/cilium/tetragon/api/v1/tetragon/codegen/eventchecker/yaml
github.com/cilium/tetragon/api/v1/tetragon/codegen/helpers
# github.com/cilium/tetragon/pkg/k8s v0.0.0-00010101000000-000000000000 => ./pkg/k8s
## explicit; go 1.18
## explicit; go 1.19
github.com/cilium/tetragon/pkg/k8s/apis/cilium.io
github.com/cilium/tetragon/pkg/k8s/apis/cilium.io/client
github.com/cilium/tetragon/pkg/k8s/apis/cilium.io/v1alpha1
Expand Down

0 comments on commit c04b0eb

Please sign in to comment.