chore: upgrade actions/checkout to v2

This commit is contained in:
Shohei Ueda 2019-12-14 18:03:52 +09:00 committed by GitHub
parent fb16fe135c
commit 26c5cb82dd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 11 deletions

View File

@ -16,31 +16,25 @@ jobs:
runs-on: ubuntu-18.04 runs-on: ubuntu-18.04
steps: steps:
- uses: actions/checkout@v1 - uses: actions/checkout@v2
with:
fetch-depth: 1
- name: build - name: build
env: env:
DOCKER_IMAGE: docker.pkg.github.com/${{ github.repository }}/action:latest DOCKER_IMAGE: docker.pkg.github.com/${{ github.repository }}/action:latest
run: | run: |
docker build . --file Dockerfile --tag ${DOCKER_IMAGE} || docker build . --file Dockerfile --tag ${DOCKER_IMAGE}
(echo -e "\e[31m[${GITHUB_WORKFLOW}] failed to build\e[m" && exit 1)
shellcheck: shellcheck:
runs-on: ubuntu-18.04 runs-on: ubuntu-18.04
steps: steps:
- uses: actions/checkout@v1 - uses: actions/checkout@v2
with:
fetch-depth: 1
- name: shellcheck - name: shellcheck
run: shellcheck ./entrypoint.sh run: shellcheck ./entrypoint.sh
hadolint: hadolint:
runs-on: macos-latest runs-on: macos-latest
steps: steps:
- uses: actions/checkout@v1 - uses: actions/checkout@v2
with:
fetch-depth: 1
- run: brew install hadolint - run: brew install hadolint
- run: hadolint ./Dockerfile - run: hadolint ./Dockerfile