Skip to content

Commit 83a8ce1

Browse files
authored
Upgrade GH Actions versions (#37)
1 parent 98eb837 commit 83a8ce1

4 files changed

Lines changed: 4 additions & 5 deletions

File tree

.github/workflows/markdown.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- uses: actions/checkout@v2
3636

3737
- name: Install Node.js 12
38-
uses: actions/setup-node@v1
38+
uses: actions/setup-node@v2
3939
with:
4040
node-version: 12.x
4141

.github/workflows/shellcheck.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ jobs:
2020
- uses: actions/checkout@v2
2121

2222
- name: Lint check
23-
uses: azohra/shell-linter@latest
23+
uses: azohra/shell-linter@v0.4.0

.github/workflows/yamllint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ jobs:
2020
- uses: actions/checkout@v2
2121

2222
- name: yamllint
23-
uses: ibiqlik/action-yamllint@v1
23+
uses: ibiqlik/action-yamllint@v3

Dockerfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,8 @@ SHELL ["/bin/ash", "-eo", "pipefail", "-c"]
2121
# - https://github.com/docker/docker-ce/blob/v17.09.0-ce/components/engine/hack/make.sh#L149
2222
# - https://github.com/golang/go/blob/go1.9.1/src/net/conf.go#L194-L275
2323
# - docker run --rm debian:stretch grep '^hosts:' /etc/nsswitch.conf
24-
RUN [ ! -e /etc/nsswitch.conf ] && echo 'hosts: files dns' > /etc/nsswitch.conf
25-
2624
RUN set -eux && \
25+
[ ! -e /etc/nsswitch.conf ] && echo 'hosts: files dns' > /etc/nsswitch.conf && \
2726
apk add --no-cache bash ca-certificates wget && \
2827
if [ "${MUFFET_VERSION}" = "latest" ]; then \
2928
MUFFET_URL=$(wget -qO- https://api.github.com/repos/raviqqe/muffet/releases/latest | grep "browser_download_url.*muffet_.*_Linux_x86_64.tar.gz" | cut -d \" -f 4) ; \

0 commit comments

Comments
 (0)