Skip to content

Commit d7ac233

Browse files
chore(deps): update all
1 parent 4f1634f commit d7ac233

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

.github/workflows/docker.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@ jobs:
3030
uses: actions/checkout@v3
3131

3232
- name: Build the container image
33-
uses: docker/build-push-action@v3.0.0
33+
uses: docker/build-push-action@v3.1.0
3434
with:
3535
repository: golang-repo-template
3636

3737
- name: Push to GitHub Packages
38-
uses: docker/build-push-action@v3.0.0
38+
uses: docker/build-push-action@v3.1.0
3939
if: github.event_name == 'release' || github.event_name == 'push'
4040
with:
4141
username: ${{ github.actor }}
@@ -66,7 +66,7 @@ jobs:
6666
if: |
6767
(github.event_name == 'release' || github.event_name == 'push') &&
6868
contains(steps.check_dockerhub_credentials.outputs.missingsecrets, 'no')
69-
uses: docker/build-push-action@v3.0.0
69+
uses: docker/build-push-action@v3.1.0
7070
with:
7171
username: ${{ secrets.DOCKER_USERNAME }}
7272
password: ${{ secrets.DOCKER_PASSWORD }}

.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/[email protected].4
56+
uses: actions/[email protected].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/[email protected].4
115+
- uses: actions/[email protected].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/[email protected].4
159+
- uses: actions/[email protected].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/[email protected].4
40+
uses: actions/[email protected].5
4141
with:
4242
path: ~/go/pkg/mod
4343
key: ${{ runner.os }}-go-${{ matrix.golang }}-v1-${{ hashFiles('**/go.sum') }}

.github/workflows/scorecards.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
env:
3131
SCORECARD_READ_TOKEN: ${{ secrets.SCORECARD_READ_TOKEN }}
3232
if: env.SCORECARD_READ_TOKEN != null
33-
uses: ossf/scorecard-action@ce330fde6b1a5c9c75b417e7efc510b822a35564 # v1.0.4
33+
uses: ossf/scorecard-action@ccd0038c79bb718836dc19c8ea53ed89f1d7ca4d # v1.0.4
3434
with:
3535
results_file: results.sarif
3636
results_format: sarif

Dockerfile

+2-2
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
@@ -14,7 +14,7 @@ COPY . ./
1414
RUN make install
1515

1616
# minimalist runtime
17-
FROM alpine:3.16.0
17+
FROM alpine:3.16.1
1818
LABEL org.label-schema.build-date=$BUILD_DATE \
1919
org.label-schema.name="golang-repo-template" \
2020
org.label-schema.description="" \

tool/lint/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"dependencies": {
33
"alex": "10.0.0",
44
"markdown-spellcheck": "1.3.1",
5-
"markdownlint-cli": "0.31.1",
5+
"markdownlint-cli": "0.32.0",
66
"remark-cli": "11.0.0",
77
"remark-lint": "9.1.1"
88
}

0 commit comments

Comments
 (0)