Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 609dc46

Browse files
authoredJul 13, 2022
chore(deps): update all
1 parent 4f1634f commit 609dc46

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed
 

‎.github/workflows/go.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
with:
5454
go-version: ${{ matrix.golang }}
5555
- name: Cache Go modules
56-
uses: actions/cache@v3.0.4
56+
uses: actions/cache@v3.0.5
5757
with:
5858
path: ~/go/pkg/mod
5959
key: ${{ runner.os }}-go-${{ matrix.golang }}-v1-${{ hashFiles('**/go.sum') }}
@@ -112,7 +112,7 @@ jobs:
112112
uses: actions/setup-go@v3
113113
with:
114114
go-version: ${{ matrix.golang }}
115-
- uses: actions/cache@v3.0.4
115+
- uses: actions/cache@v3.0.5
116116
with:
117117
path: ~/go/pkg/mod
118118
key: ${{ runner.os }}-go-${{ matrix.golang }}-v1-${{ hashFiles('**/go.sum') }}
@@ -156,7 +156,7 @@ jobs:
156156
uses: actions/setup-go@v3
157157
with:
158158
go-version: ${{ matrix.golang }}
159-
- uses: actions/cache@v3.0.4
159+
- uses: actions/cache@v3.0.5
160160
with:
161161
path: ~/go/pkg/mod
162162
key: ${{ runner.os }}-go-${{ matrix.golang }}-v1-${{ hashFiles('**/go.sum') }}

‎.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
-
3838
name: Cache Go modules
3939
if: steps.semantic.outputs.new-release-published == 'true' && steps.repoman.outputs.has-go-binary == 'true'
40-
uses: actions/cache@v3.0.4
40+
uses: actions/cache@v3.0.5
4141
with:
4242
path: ~/go/pkg/mod
4343
key: ${{ runner.os }}-go-${{ matrix.golang }}-v1-${{ hashFiles('**/go.sum') }}

‎Dockerfile

+1-1
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.3-alpine as builder
7+
FROM golang:1.18.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/golang-repo-template

0 commit comments

Comments
 (0)
Please sign in to comment.