Skip to content

Commit

Permalink
chore: bump golang to 1.20.
Browse files Browse the repository at this point in the history
Signed-off-by: Federico Di Pierro <[email protected]>
  • Loading branch information
FedeDP committed Aug 28, 2023
1 parent 53a0ba1 commit 52a5e54
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ version: 2.1
jobs:
"build-test":
docker:
- image: alpine:3.16
- image: golang:1.20-alpine
steps:
- checkout
- setup_remote_docker: # used by integration tests that runs driverkit binary that needs docker
version: 20.10.12
- run:
name: Install deps
command: apk add gcc musl-dev make bash git go
command: apk add gcc musl-dev make bash git
- run:
name: Build
command: make build
Expand Down Expand Up @@ -42,8 +42,8 @@ jobs:
- run:
name: Prepare project
command: |
docker run --rm -it -v /tmp/source:/source -v /var/run/docker.sock:/var/run/docker.sock -w /source --name alpine_sh -d alpine:3.16 sh
docker exec alpine_sh apk add gcc musl-dev make bash git go docker
docker run --rm -it -v /tmp/source:/source -v /var/run/docker.sock:/var/run/docker.sock -w /source --name alpine_sh -d golang:1.20-alpine sh
docker exec alpine_sh apk add gcc musl-dev make bash git docker
docker exec alpine_sh git config --global --add safe.directory /source
- run:
name: Build
Expand Down Expand Up @@ -169,7 +169,7 @@ jobs:
fi
"release":
docker:
- image: cimg/go:1.18
- image: cimg/go:1.20
steps:
- checkout
- run:
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/falcosecurity/driverkit

go 1.18
go 1.20

require (
github.com/acarl005/stripansi v0.0.0-20180116102854-5a71ef0e047d
Expand Down

0 comments on commit 52a5e54

Please sign in to comment.