Skip to content

Commit 136673d

Browse files
committed
chore(deps): update all
1 parent 87229a9 commit 136673d

File tree

7 files changed

+19
-19
lines changed

7 files changed

+19
-19
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535

3636
steps:
3737
- name: Checkout repository
38-
uses: actions/checkout@v2.3.5
38+
uses: actions/checkout@v2.4.0
3939

4040
# Initializes the CodeQL tools for scanning.
4141
- name: Initialize CodeQL

.github/workflows/docker.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
outputs:
1515
has-docker: ${{ steps.info.outputs.has-docker }}
1616
steps:
17-
- uses: actions/checkout@v2.3.5
17+
- uses: actions/checkout@v2.4.0
1818
with:
1919
fetch-depth: '0'
2020
- uses: moul/repoman-action@v1
@@ -27,7 +27,7 @@ jobs:
2727
runs-on: ubuntu-latest
2828
steps:
2929
- name: Checkout
30-
uses: actions/checkout@v2.3.5
30+
uses: actions/checkout@v2.4.0
3131

3232
- name: Build the container image
3333
uses: docker/[email protected]

.github/workflows/go.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
outputs:
3333
has-go-binary: ${{ steps.info.outputs.has-go-binary }}
3434
steps:
35-
- uses: actions/checkout@v2.3.5
35+
- uses: actions/checkout@v2.4.0
3636
with:
3737
fetch-depth: '0'
3838
- uses: moul/repoman-action@v1
@@ -46,13 +46,13 @@ jobs:
4646
runs-on: ubuntu-latest
4747
steps:
4848
- name: Checkout
49-
uses: actions/checkout@v2.3.5
49+
uses: actions/checkout@v2.4.0
5050
- name: Set up Go
5151
uses: actions/setup-go@v2
5252
with:
5353
go-version: ${{ matrix.golang }}
5454
- name: Cache Go modules
55-
uses: actions/[email protected].6
55+
uses: actions/[email protected].7
5656
with:
5757
path: ~/go/pkg/mod
5858
key: ${{ runner.os }}-go-${{ matrix.golang }}-v1-${{ hashFiles('**/go.sum') }}
@@ -70,7 +70,7 @@ jobs:
7070
matrix:
7171
golangci_lint: [v1.38]
7272
steps:
73-
- uses: actions/checkout@v2.3.5
73+
- uses: actions/checkout@v2.4.0
7474
- name: golangci-lint
7575
uses: golangci/[email protected]
7676
with:
@@ -86,7 +86,7 @@ jobs:
8686
matrix:
8787
golang: [1.16.x]
8888
steps:
89-
- uses: actions/checkout@v2.3.5
89+
- uses: actions/checkout@v2.4.0
9090
- name: Install Go
9191
uses: actions/setup-go@v2
9292
with:
@@ -104,12 +104,12 @@ jobs:
104104
OS: macos-latest
105105
GOLANG: ${{ matrix.golang }}
106106
steps:
107-
- uses: actions/checkout@v2.3.5
107+
- uses: actions/checkout@v2.4.0
108108
- name: Install Go
109109
uses: actions/setup-go@v2
110110
with:
111111
go-version: ${{ matrix.golang }}
112-
- uses: actions/[email protected].6
112+
- uses: actions/[email protected].7
113113
with:
114114
path: ~/go/pkg/mod
115115
key: ${{ runner.os }}-go-${{ matrix.golang }}-v1-${{ hashFiles('**/go.sum') }}
@@ -146,12 +146,12 @@ jobs:
146146
OS: ubuntu-latest
147147
GOLANG: ${{ matrix.golang }}
148148
steps:
149-
- uses: actions/checkout@v2.3.5
149+
- uses: actions/checkout@v2.4.0
150150
- name: Install Go
151151
uses: actions/setup-go@v2
152152
with:
153153
go-version: ${{ matrix.golang }}
154-
- uses: actions/[email protected].6
154+
- uses: actions/[email protected].7
155155
with:
156156
path: ~/go/pkg/mod
157157
key: ${{ runner.os }}-go-${{ matrix.golang }}-v1-${{ hashFiles('**/go.sum') }}

.github/workflows/pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
name: Release-Notes Preview
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v2.3.5
15+
- uses: actions/checkout@v2.4.0
1616
- run: |
1717
git fetch --prune --unshallow --tags
1818
- uses: snyk/[email protected]
@@ -26,7 +26,7 @@ jobs:
2626
name: Documentation
2727
runs-on: ubuntu-latest
2828
steps:
29-
- uses: actions/checkout@v2.3.5
29+
- uses: actions/checkout@v2.4.0
3030
with:
3131
depth: 1
3232
- uses: nosborn/github-action-markdown-cli@master

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
steps:
1616
-
1717
name: Checkout
18-
uses: actions/checkout@v2.3.5
18+
uses: actions/checkout@v2.4.0
1919
-
2020
name: Unshallow
2121
run: git fetch --prune --unshallow
@@ -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].6
40+
uses: actions/[email protected].7
4141
with:
4242
path: ~/go/pkg/mod
4343
key: ${{ runner.os }}-go-${{ matrix.golang }}-v1-${{ 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.17.2-alpine as builder
7+
FROM golang:1.17.3-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.14.2
17+
FROM alpine:3.15.0
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

Lines changed: 1 addition & 1 deletion
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.29.0",
5+
"markdownlint-cli": "0.30.0",
66
"remark-cli": "10.0.0",
77
"remark-lint": "9.1.0"
88
}

0 commit comments

Comments
 (0)