Skip to content

Commit 00f7af1

Browse files
committed
Upgrade Go to 1.23.1
1 parent 7d17422 commit 00f7af1

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/test.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ jobs:
77
os: [ubuntu-latest, macos-latest, windows-latest]
88
runs-on: ${{ matrix.os }}
99
steps:
10+
- name: Checkout code
11+
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
1012
- name: Install Go
1113
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
1214
with:
13-
go-version: 1.20.x
14-
- name: Checkout code
15-
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
15+
go-version-file: go.mod
1616
- name: Test
1717
run: go test -mod=vendor ./...
1818

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM amd64/golang:1.20.3-alpine3.17 as builder
1+
FROM amd64/golang:1.23.1-alpine3.20 as builder
22

33
WORKDIR /usr/src/pdsync
44

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/timoreimann/pdsync
22

3-
go 1.20
3+
go 1.23
44

55
require (
66
github.com/PagerDuty/go-pagerduty v1.1.2

0 commit comments

Comments
 (0)