Skip to content

Commit 0d6daa3

Browse files
Bump actions/checkout from 2 to 3 (#617)
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]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent af9a17d commit 0d6daa3

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.github/workflows/code-style.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
if: github.event.pull_request.draft == false
1414

1515
steps:
16-
- uses: actions/checkout@v2
16+
- uses: actions/checkout@v3
1717
with:
1818
repository: ${{ github.event.client_payload.pull_request.head.repo.full_name }}
1919
ref: ${{ github.event.client_payload.pull_request.head.ref }}

.github/workflows/php-linter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
if: github.event.pull_request.draft == false
1414

1515
steps:
16-
- uses: actions/checkout@v2
16+
- uses: actions/checkout@v3
1717
with:
1818
repository: ${{ github.event.client_payload.pull_request.head.repo.full_name }}
1919
ref: ${{ github.event.client_payload.pull_request.head.ref }}

.github/workflows/phpstan.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
7070

7171
steps:
72-
- uses: actions/checkout@v2
72+
- uses: actions/checkout@v3
7373
with:
7474
repository: ${{ github.event.client_payload.pull_request.head.repo.full_name }}
7575
ref: ${{ github.event.client_payload.pull_request.head.ref }}
@@ -124,7 +124,7 @@ jobs:
124124
DBA_MODE: ${{ matrix.mode }}
125125

126126
steps:
127-
- uses: actions/checkout@v2
127+
- uses: actions/checkout@v3
128128
with:
129129
repository: ${{ github.event.client_payload.pull_request.head.repo.full_name }}
130130
ref: ${{ github.event.client_payload.pull_request.head.ref }}

.github/workflows/tests-postgres.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
- 5432:5432
3939

4040
steps:
41-
- uses: actions/checkout@v2
41+
- uses: actions/checkout@v3
4242
with:
4343
repository: ${{ github.event.client_payload.pull_request.head.repo.full_name }}
4444
ref: ${{ github.event.client_payload.pull_request.head.ref }}

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ jobs:
106106
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
107107

108108
steps:
109-
- uses: actions/checkout@v2
109+
- uses: actions/checkout@v3
110110
with:
111111
repository: ${{ github.event.client_payload.pull_request.head.repo.full_name }}
112112
ref: ${{ github.event.client_payload.pull_request.head.ref }}
@@ -162,7 +162,7 @@ jobs:
162162
DBA_MODE: ${{ matrix.mode }}
163163

164164
steps:
165-
- uses: actions/checkout@v2
165+
- uses: actions/checkout@v3
166166
with:
167167
repository: ${{ github.event.client_payload.pull_request.head.repo.full_name }}
168168
ref: ${{ github.event.client_payload.pull_request.head.ref }}

0 commit comments

Comments
 (0)