Skip to content

Commit 0efe196

Browse files
chore(deps): bump actions/checkout from 2 to 3
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v2...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent b24b90c commit 0efe196

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

.github/workflows/build-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
token: ${{ secrets.GITHUB_TOKEN }}
2929

3030
- name: Checkout
31-
uses: actions/checkout@v2
31+
uses: actions/checkout@v3
3232

3333
- name: Generate testing matrix
3434
uses: actions/github-script@v6
@@ -65,7 +65,7 @@ jobs:
6565
script: return "${{ matrix.version }}".split('.')[0]
6666

6767
- name: Checkout
68-
uses: actions/checkout@v2
68+
uses: actions/checkout@v3
6969

7070
- name: Build image
7171
uses: docker/build-push-action@v2

.github/workflows/doctoc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
name: Doc TOC Check
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v2
14+
- uses: actions/checkout@v3
1515
- uses: actions/setup-node@v3
1616
with:
1717
node-version: 'lts/*'

.github/workflows/eclint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
eclint:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v2
9+
- uses: actions/checkout@v3
1010
- uses: actions/setup-node@v3
1111
with:
1212
node-version: 'lts/*'

.github/workflows/markdown-link-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
markdown-link-check:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v2
12+
- uses: actions/checkout@v3
1313
- uses: actions/setup-node@v3
1414
with:
1515
node-version: 'lts/*'

.github/workflows/missing-checksum.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
test:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v2
13+
- uses: actions/checkout@v3
1414

1515
- name: Count number of Alpine Dockersfiles without CHECKSUM
1616
run: |

.github/workflows/official-pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@ jobs:
1919

2020
steps:
2121
- name: Checkout the docker-node repo
22-
uses: actions/checkout@v2
22+
uses: actions/checkout@v3
2323
with:
2424
path: docker-node
2525
ref: ${{ github.base_ref }}
2626
fetch-depth: 50
2727

2828
- name: Checkout the official-images repo
29-
uses: actions/checkout@v2
29+
uses: actions/checkout@v3
3030
with:
3131
path: official-images
3232
repository: docker-library/official-images

.github/workflows/shfmt.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ jobs:
99
shfmt:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v1
12+
- uses: actions/checkout@v3
1313
- run: docker run -v "$(pwd)":/sh -w /sh peterdavehello/shfmt:2.6.3 shfmt -sr -i 2 -l -w -ci .
1414
- run: git diff --color --exit-code
1515

1616
shellcheck:
1717
runs-on: ubuntu-latest
1818
steps:
19-
- uses: actions/checkout@v1
19+
- uses: actions/checkout@v3
2020
- run: shellcheck *.sh

0 commit comments

Comments
 (0)