Skip to content

Commit 26cc4ee

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

11 files changed

+12
-12
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@v5
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@v5"
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
@@ -69,7 +69,7 @@ jobs:
6969
timeout-minutes: 10
7070

7171
steps:
72-
- uses: actions/checkout@v4
72+
- uses: actions/checkout@v5
7373

7474
# see https://github.com/shivammathur/setup-php
7575
-

.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@v5
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
@@ -46,7 +46,7 @@ jobs:
4646
name: End to end test - ${{ matrix.directory }}
4747

4848
steps:
49-
- uses: actions/checkout@v4
49+
- uses: actions/checkout@v5
5050

5151
- uses: shivammathur/setup-php@v2
5252
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@v5
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@v5
3434

3535
- uses: shivammathur/setup-php@v2
3636
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@v5"
4141
with:
4242
repository: ${{ matrix.repository_name }}
4343
ref: "main"

.github/workflows/php_linter.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313

1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v5
1616

1717
-
1818
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@v5
1818
with:
1919
# Must be used to trigger workflow after push
2020
token: ${{ secrets.ACCESS_TOKEN }}

.github/workflows/tests.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@v5
2929

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

0 commit comments

Comments
 (0)