Skip to content

Commit

Permalink
chore(deps): update all
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] committed Jan 10, 2024
1 parent 70fd6d4 commit 5f1a35e
Show file tree
Hide file tree
Showing 5 changed files with 513 additions and 29 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/go.yml
Expand Up @@ -42,7 +42,7 @@ jobs:
with:
go-version: 1.14
- name: Cache Go modules
uses: actions/cache@v2.1.7
uses: actions/cache@v2.1.8
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
Expand All @@ -60,7 +60,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: golangci-lint
uses: golangci/golangci-lint-action@v3.1.0
uses: golangci/golangci-lint-action@v3.7.0
with:
version: v1.28
github-token: ${{ secrets.GITHUB_TOKEN }}
Expand Down Expand Up @@ -100,7 +100,7 @@ jobs:
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.golang }}
- uses: actions/cache@v2.1.7
- uses: actions/cache@v2.1.8
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ matrix.golang }}-${{ hashFiles('**/go.sum') }}
Expand Down Expand Up @@ -143,7 +143,7 @@ jobs:
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.golang }}
- uses: actions/cache@v2.1.7
- uses: actions/cache@v2.1.8
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ matrix.golang }}-${{ hashFiles('**/go.sum') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Expand Up @@ -30,7 +30,7 @@ jobs:
-
name: Cache Go modules
if: steps.semantic.outputs.new-release-published == 'true'
uses: actions/cache@v2.1.7
uses: actions/cache@v2.1.8
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Expand Up @@ -4,7 +4,7 @@ ARG VCS_REF
ARG VERSION

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

# minimalist runtime
FROM alpine:3.15.1
FROM alpine:3.19.0
LABEL org.label-schema.build-date=$BUILD_DATE \
org.label-schema.name="grpcbin" \
org.label-schema.description="" \
Expand Down
8 changes: 4 additions & 4 deletions go.mod

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 5f1a35e

Please sign in to comment.