Skip to content

Commit

Permalink
ci: update go versions
Browse files Browse the repository at this point in the history
  • Loading branch information
WanzenBug committed Dec 7, 2023
1 parent f097e50 commit df2ac4d
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ jobs:
runs-on: ubuntu-latest
steps:

- name: Set up Go 1.18
uses: actions/setup-go@v1
- name: Set up Go 1.19
uses: actions/setup-go@v5
with:
go-version: 1.18
go-version: 1.19
id: go

- name: Check out code into the Go module directory
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Build
run: go build -v .
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup GO
uses: actions/setup-go@v4
uses: actions/setup-go@v5
with:
go-version: 1.18
go-version: 1.19
- name: Build project
env:
CGO_ENABLED: "0"
Expand Down
4 changes: 2 additions & 2 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ stages:

variables:
VMSHED_VERSION: v0.20.1
GO_VERSION: "1.18"
GO_VERSION: "1.19"
BUILD_HELPERS_VERSION: cad23b57db14b7676808fa645c4561bc66c3e204

prepare-bins:
Expand Down Expand Up @@ -85,7 +85,7 @@ lint:
stage: test
rules:
- if: $CI_MERGE_REQUEST_ID
image: golangci/golangci-lint:v1.46-alpine
image: golangci/golangci-lint:v1.55
variables:
GOPATH: $CI_PROJECT_DIR/.mygo
script:
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/LINBIT/virter

go 1.18
go 1.19

require (
github.com/BurntSushi/toml v1.3.2
Expand Down

0 comments on commit df2ac4d

Please sign in to comment.