diff --git a/.github/workflows/depup.yml b/.github/workflows/depup.yml index a60e178..46573f4 100644 --- a/.github/workflows/depup.yml +++ b/.github/workflows/depup.yml @@ -15,7 +15,7 @@ jobs: shellcheck: runs-on: ubuntu-latest steps: - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4 + - uses: actions/checkout@v4 - uses: reviewdog/action-depup@v1 id: depup with: @@ -41,7 +41,7 @@ jobs: reviewdog: runs-on: ubuntu-latest steps: - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4 + - uses: actions/checkout@v4 - uses: reviewdog/action-depup@v1 id: depup with: @@ -67,7 +67,7 @@ jobs: actionlint: runs-on: ubuntu-latest steps: - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4 + - uses: actions/checkout@v4 - uses: reviewdog/action-depup@v1 id: depup with: diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 8c03f30..809f587 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -9,6 +9,6 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4 + - uses: actions/checkout@v4 - name: Build the Docker image run: docker build . --file Dockerfile --tag "reviewdog-actionlint:$(date +%s)" diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 79876d5..31d883d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -19,7 +19,7 @@ jobs: issues: write packages: write steps: - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4 + - uses: actions/checkout@v4 with: fetch-depth: 0 @@ -64,7 +64,7 @@ jobs: pull-requests: write issues: write steps: - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4 + - uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/.github/workflows/reviewdog.yml b/.github/workflows/reviewdog.yml index f7a97f3..ca969fc 100644 --- a/.github/workflows/reviewdog.yml +++ b/.github/workflows/reviewdog.yml @@ -1,4 +1,3 @@ - name: reviewdog on: [pull_request] @@ -13,7 +12,7 @@ jobs: name: runner / actionlint runs-on: ubuntu-latest steps: - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4 + - uses: actions/checkout@v4 - name: actionlint uses: ./ with: @@ -23,7 +22,7 @@ jobs: name: runner / reviewdog runs-on: ubuntu-latest steps: - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4 + - uses: actions/checkout@v4 - name: actionlint w/ reviewdog uses: ./ with: @@ -34,7 +33,7 @@ jobs: name: runner / shellcheck runs-on: ubuntu-latest steps: - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4 + - uses: actions/checkout@v4 - name: actionlint w/ shellcheck uses: ./ with: @@ -45,7 +44,7 @@ jobs: name: runner / pyflakes runs-on: ubuntu-latest steps: - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4 + - uses: actions/checkout@v4 - name: actionlint w/ pyflakes uses: ./ with: diff --git a/Dockerfile b/Dockerfile index b436e8c..44f47b6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -23,7 +23,7 @@ RUN apk --update add git curl && \ rm /var/cache/apk/* # install reviewdog -ENV REVIEWDOG_VERSION=v0.15.0 +ENV REVIEWDOG_VERSION=v0.16.0 RUN wget -O - -q https://raw.githubusercontent.com/reviewdog/reviewdog/master/install.sh | sh -s -- -b /usr/local/bin/ ${REVIEWDOG_VERSION} # install actionlint diff --git a/action.yml b/action.yml index b16f56a..41ac43b 100644 --- a/action.yml +++ b/action.yml @@ -43,7 +43,7 @@ inputs: required: false runs: using: 'docker' - image: 'docker://ghcr.io/reviewdog/action-actionlint:v1.39.1' + image: 'docker://ghcr.io/reviewdog/action-actionlint:v1.40.0' branding: color: red icon: check-circle