Skip to content

Commit

Permalink
Merge pull request #113 from reviewdog/unpin-actions-checkout
Browse files Browse the repository at this point in the history
unpin actions/checkout
  • Loading branch information
shogo82148 authored Dec 11, 2023
2 parents 04fc2e0 + e415fca commit 7ce1528
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 11 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/depup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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:
Expand All @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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)"
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
issues: write
packages: write
steps:
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4
- uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:
pull-requests: write
issues: write
steps:
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4
- uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down
9 changes: 4 additions & 5 deletions .github/workflows/reviewdog.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

name: reviewdog
on: [pull_request]

Expand All @@ -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:
Expand All @@ -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:
Expand All @@ -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:
Expand All @@ -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:
Expand Down

0 comments on commit 7ce1528

Please sign in to comment.