Skip to content

Commit 3de5071

Browse files
Knalltuete5000frittentheke
authored andcommitted
Use Go 1.23
1 parent 81bdbbe commit 3de5071

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/build_and_test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Setup Go
1616
uses: actions/setup-go@v5
1717
with:
18-
go-version: 1.22.x
18+
go-version: 1.23.x
1919

2020
- name: Run Tests
2121
run: go test ./...
@@ -36,7 +36,7 @@ jobs:
3636
- name: Setup Go
3737
uses: actions/setup-go@v5
3838
with:
39-
go-version: 1.22.x
39+
go-version: 1.23.x
4040

4141
- name: Run Goreleaser
4242
if: ${{ github.event_name != 'pull_request' }}

.github/workflows/lint.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Set up Go
1616
uses: actions/setup-go@v5
1717
with:
18-
go-version: 1.22.x
18+
go-version: 1.23.x
1919
- name: Lint
2020
uses: golangci/golangci-lint-action@v6.2.0
2121
with:

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.22 as builder
1+
FROM golang:1.23 as builder
22
WORKDIR /app
33

44
# Requirements/Dependencies

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/inovex/prometheus-libvirt-exporter
22

3-
go 1.22
3+
go 1.23
44

55
require (
66
github.com/alecthomas/kingpin/v2 v2.4.0

0 commit comments

Comments
 (0)