Skip to content

Commit 8336aa5

Browse files
Bump actions/checkout from 4 to 6
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent a6f0ce5 commit 8336aa5

13 files changed

+14
-14
lines changed

.github/workflows/build_scoped_rector.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
run: sleep 20
3232

3333
-
34-
uses: actions/checkout@v4
34+
uses: actions/checkout@v6
3535
with:
3636
fetch-depth: 0
3737

@@ -84,7 +84,7 @@ jobs:
8484
8585
# 6. clone remote repository, so we can push it
8686
-
87-
uses: "actions/checkout@v4"
87+
uses: "actions/checkout@v6"
8888
with:
8989
repository: rectorphp/rector
9090
path: remote-repository

.github/workflows/code_analysis.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979
timeout-minutes: 10
8080

8181
steps:
82-
- uses: actions/checkout@v4
82+
- uses: actions/checkout@v6
8383

8484
# see https://github.com/shivammathur/setup-php
8585
-

.github/workflows/code_analysis_no_dev.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
timeout-minutes: 10
1414

1515
steps:
16-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@v6
1717
# see https://github.com/shivammathur/setup-php
1818
- uses: shivammathur/setup-php@v2
1919
with:

.github/workflows/e2e.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
name: End to end test - ${{ matrix.directory }}
4646

4747
steps:
48-
- uses: actions/checkout@v4
48+
- uses: actions/checkout@v6
4949

5050
- uses: shivammathur/setup-php@v2
5151
with:

.github/workflows/e2e_command_with_option.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
timeout-minutes: 10
2222

2323
steps:
24-
- uses: actions/checkout@v4
24+
- uses: actions/checkout@v6
2525

2626
# see https://github.com/shivammathur/setup-php
2727
-

.github/workflows/e2e_with_cache.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
name: End to end test - ${{ matrix.directory }}
3131

3232
steps:
33-
- uses: actions/checkout@v4
33+
- uses: actions/checkout@v6
3434

3535
- uses: shivammathur/setup-php@v2
3636
with:

.github/workflows/e2e_with_no_diffs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
name: End to end test - ${{ matrix.directory }}
3030

3131
steps:
32-
- uses: actions/checkout@v4
32+
- uses: actions/checkout@v6
3333

3434
- uses: shivammathur/setup-php@v2
3535
with:

.github/workflows/packages_tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
steps:
3838
# see https://github.com/actions/checkout#usage
3939
-
40-
uses: "actions/checkout@v4"
40+
uses: "actions/checkout@v6"
4141
with:
4242
repository: ${{ matrix.repository_name }}
4343
ref: "main"

.github/workflows/phpstan_printer_test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525

2626
name: PHP ${{ matrix.php-versions }} tests (${{ matrix.os }})
2727
steps:
28-
- uses: actions/checkout@v4
28+
- uses: actions/checkout@v6
2929

3030
-
3131
uses: shivammathur/setup-php@v2

.github/workflows/rector.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
if: github.event.pull_request.head.repo.full_name == 'rectorphp/rector-src'
1515
steps:
1616
-
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v6
1818
with:
1919
# Must be used to trigger workflow after push
2020
token: ${{ secrets.ACCESS_TOKEN }}

0 commit comments

Comments
 (0)