Skip to content

Commit 610f17b

Browse files
committed
Bump to golang 1.23
1 parent 4d1c025 commit 610f17b

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/golang-linter.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,19 +11,19 @@ permissions:
1111

1212
jobs:
1313
lint:
14-
runs-on: ubuntu-22.04
14+
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@v4
1717
with:
1818
submodules: recursive
19-
- uses: actions/setup-go@v4
19+
- uses: actions/setup-go@v5
2020
with:
21-
go-version: '1.21'
21+
go-version: '1.23'
2222
cache: false
2323
- name: golangci-lint
2424
uses: golangci/golangci-lint-action@v3
2525
with:
26-
version: v1.55
26+
version: v1.60
2727
only-new-issues: true
2828
env:
2929
CGO_ENABLED: 0

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.21-alpine3.18 AS builder
1+
FROM golang:1.23-alpine3.20 AS builder
22
MAINTAINER DeepFence
33

44
RUN apk update
@@ -7,6 +7,6 @@ WORKDIR /go
77
COPY . compliance
88
RUN cd compliance && make clean && make
99

10-
FROM alpine:3.18
10+
FROM alpine:3.20
1111
MAINTAINER DeepFence
1212
COPY --from=builder /go/compliance/compliance /usr/bin/compliance

0 commit comments

Comments
 (0)