Skip to content

Commit 6c2db6e

Browse files
authored
ci: pin actions/checkout to v2 (#541)
1 parent 3ba244e commit 6c2db6e

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/dev-image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
runs-on: ubuntu-18.04
3434
if: contains(github.event.head_commit.message, '[skip ci]') == false
3535
steps:
36-
- uses: actions/checkout@v2.3.1
36+
- uses: actions/checkout@v2
3737
- name: Login to Packages
3838
run: echo '${{ secrets.GITHUB_TOKEN }}' | docker login 'docker.pkg.github.com' -u 'peaceiris' --password-stdin
3939
- run: docker-compose pull --quiet

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
release:
1010
runs-on: ubuntu-18.04
1111
steps:
12-
- uses: actions/checkout@v2.3.1
12+
- uses: actions/checkout@v2
1313
- uses: peaceiris/workflows/create-release-npm@v0.7.0
1414
env:
1515
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- 'macos-latest'
2323
- 'windows-latest'
2424
steps:
25-
- uses: actions/checkout@v2.3.1
25+
- uses: actions/checkout@v2
2626

2727
- name: Dump GitHub context
2828
env:

.github/workflows/update-major-tag.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-18.04
1010
steps:
1111

12-
- uses: actions/checkout@v2.3.1
12+
- uses: actions/checkout@v2
1313

1414
- name: Update major tag
1515
if: github.event.release.prerelease == false

0 commit comments

Comments
 (0)