Skip to content

Commit

Permalink
chore: bump to go1.22
Browse files Browse the repository at this point in the history
  • Loading branch information
kpetremann committed Jun 14, 2024
1 parent be674ea commit a836ee5
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: "1.21"
go-version: "1.22"

- name: Run golangci-lint
uses: golangci/golangci-lint-action@v3.2.0
Expand All @@ -42,7 +42,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: "1.21"
go-version: "1.22"

- name: Set up environment
run: docker compose -f $COMPOSE_FILE up -d --wait --wait-timeout 60
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
name: Set up Go
uses: actions/setup-go@v3
with:
go-version: "1.21"
go-version: "1.22"
-
name: Run GoReleaser
uses: goreleaser/goreleaser-action@v4
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.21-bullseye AS builder
FROM golang:1.22-bullseye AS builder

WORKDIR /go/src/
COPY ./ /go/src/
Expand Down
2 changes: 1 addition & 1 deletion e2e_test/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ services:
- e2e

exporter:
image: golang:1.21-bullseye
image: golang:1.22-bullseye
command: "go run ./cmd/salt-exporter"
working_dir: "/app"
environment:
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/kpetremann/salt-exporter

go 1.21
go 1.22

require (
github.com/alecthomas/chroma v0.10.0
Expand Down

0 comments on commit a836ee5

Please sign in to comment.