Skip to content

Commit 7bc9a1d

Browse files
fix(deps): update all
1 parent 70fd6d4 commit 7bc9a1d

File tree

5 files changed

+548
-29
lines changed

5 files changed

+548
-29
lines changed

.github/workflows/go.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
with:
4343
go-version: 1.14
4444
- name: Cache Go modules
45-
uses: actions/cache@v2.1.7
45+
uses: actions/cache@v2.1.8
4646
with:
4747
path: ~/go/pkg/mod
4848
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
@@ -60,7 +60,7 @@ jobs:
6060
steps:
6161
- uses: actions/checkout@v3
6262
- name: golangci-lint
63-
uses: golangci/golangci-lint-action@v3.1.0
63+
uses: golangci/golangci-lint-action@v3.7.1
6464
with:
6565
version: v1.28
6666
github-token: ${{ secrets.GITHUB_TOKEN }}
@@ -100,7 +100,7 @@ jobs:
100100
uses: actions/setup-go@v2
101101
with:
102102
go-version: ${{ matrix.golang }}
103-
- uses: actions/cache@v2.1.7
103+
- uses: actions/cache@v2.1.8
104104
with:
105105
path: ~/go/pkg/mod
106106
key: ${{ runner.os }}-go-${{ matrix.golang }}-${{ hashFiles('**/go.sum') }}
@@ -143,7 +143,7 @@ jobs:
143143
uses: actions/setup-go@v2
144144
with:
145145
go-version: ${{ matrix.golang }}
146-
- uses: actions/cache@v2.1.7
146+
- uses: actions/cache@v2.1.8
147147
with:
148148
path: ~/go/pkg/mod
149149
key: ${{ runner.os }}-go-${{ matrix.golang }}-${{ hashFiles('**/go.sum') }}

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
-
3131
name: Cache Go modules
3232
if: steps.semantic.outputs.new-release-published == 'true'
33-
uses: actions/cache@v2.1.7
33+
uses: actions/cache@v2.1.8
3434
with:
3535
path: ~/go/pkg/mod
3636
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ ARG VCS_REF
44
ARG VERSION
55

66
# build
7-
FROM golang:1.18.1-alpine as builder
7+
FROM golang:1.23.4-alpine as builder
88
RUN apk add --no-cache git gcc musl-dev make
99
ENV GO111MODULE=on
1010
WORKDIR /go/src/moul.io/grpcbin
@@ -15,7 +15,7 @@ COPY . ./
1515
RUN go build -o /go/bin/grpcbin -ldflags "-extldflags \"-static\"" -v
1616

1717
# minimalist runtime
18-
FROM alpine:3.15.1
18+
FROM alpine:3.21.0
1919
LABEL org.label-schema.build-date=$BUILD_DATE \
2020
org.label-schema.name="grpcbin" \
2121
org.label-schema.description="" \

go.mod

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)