Skip to content

Commit

Permalink
Merge pull request #107 from moul/renovate/all
Browse files Browse the repository at this point in the history
  • Loading branch information
moul committed Nov 14, 2021
2 parents 9d6e208 + f8a9b82 commit 0b8f675
Show file tree
Hide file tree
Showing 6 changed files with 42 additions and 24 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@ jobs:
docker-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.3.4
- uses: actions/checkout@v2.4.0
- name: Build the Docker image
run: docker build . --file Dockerfile
goreleaser:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2.3.4
uses: actions/checkout@v2.4.0
- name: Set up Go
uses: actions/setup-go@v2
with:
Expand All @@ -49,7 +49,7 @@ jobs:
restore-keys: |
${{ runner.os }}-go-
- name: Run GoReleaser (Dry Run)
uses: goreleaser/goreleaser-action@v2.6.1
uses: goreleaser/goreleaser-action@v2.8.0
with:
version: latest
args: release --rm-dist --snapshot --skip-publish
Expand All @@ -58,7 +58,7 @@ jobs:
golangci-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.3.4
- uses: actions/checkout@v2.4.0
- name: golangci-lint
uses: golangci/golangci-lint-action@v2.5.2
with:
Expand All @@ -76,7 +76,7 @@ jobs:
#- 1.13
- 1.14
steps:
- uses: actions/checkout@v2.3.4
- uses: actions/checkout@v2.4.0
- name: Install Go
uses: actions/setup-go@v2
with:
Expand All @@ -95,7 +95,7 @@ jobs:
OS: macos-latest
GOLANG: ${{ matrix.golang }}
steps:
- uses: actions/checkout@v2.3.4
- uses: actions/checkout@v2.4.0
- name: Install Go
uses: actions/setup-go@v2
with:
Expand Down Expand Up @@ -138,7 +138,7 @@ jobs:
OS: ubuntu-latest
GOLANG: ${{ matrix.golang }}
steps:
- uses: actions/checkout@v2.3.4
- uses: actions/checkout@v2.4.0
- name: Install Go
uses: actions/setup-go@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
name: Release-Notes Preview
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.3.4
- uses: actions/checkout@v2.4.0
- run: |
git fetch --prune --unshallow --tags
- uses: snyk/release-notes-preview@v1.6.2
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
steps:
-
name: Checkout
uses: actions/checkout@v2.3.4
uses: actions/checkout@v2.4.0
-
name: Unshallow
run: git fetch --prune --unshallow
Expand Down Expand Up @@ -39,7 +39,7 @@ jobs:
-
name: Run GoReleaser
if: steps.semantic.outputs.new-release-published == 'true'
uses: goreleaser/goreleaser-action@v2.6.1
uses: goreleaser/goreleaser-action@v2.8.0
with:
version: latest
args: release --rm-dist
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ ARG VCS_REF
ARG VERSION

# build
FROM golang:1.16.5-alpine as builder
FROM golang:1.17.3-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.13.5
FROM alpine:3.14.3
LABEL org.label-schema.build-date=$BUILD_DATE \
org.label-schema.name="grpcbin" \
org.label-schema.description="" \
Expand Down
5 changes: 2 additions & 3 deletions go.mod

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

37 changes: 28 additions & 9 deletions go.sum

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

0 comments on commit 0b8f675

Please sign in to comment.