Skip to content
This repository has been archived by the owner on Oct 14, 2024. It is now read-only.

Bump minimum go version to 1.20 #331

Merged
merged 1 commit into from
Jun 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
merge_group:

env:
GO_VERSION: 1.19
GO_VERSION: "1.20"

jobs:
api-verification:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
- "v[0-9]+.[0-9]+.[0-9]+"

env:
GO_VERSION: 1.19
GO_VERSION: "1.20"

jobs:
verification:
Expand Down
4 changes: 4 additions & 0 deletions .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,10 @@ linters-settings:
linters:
enable-all: true
disable:
- dupword
- wastedassign
chrisgacsal marked this conversation as resolved.
Show resolved Hide resolved
- musttag
- revive
- maligned
- funlen
- dupl
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ DOCKER_TAG ?= ${VERSION}
VMCLARITY_TOOLS_BASE ?=

# Dependency versions
GOLANGCI_VERSION = 1.49.0
GOLANGCI_VERSION = 1.52.2
LICENSEI_VERSION = 0.5.0

# HELP
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/openclarity/vmclarity

go 1.19
go 1.20

require (
github.com/CiscoM31/godata v1.0.7
Expand Down