Skip to content

Commit b7a1d32

Browse files
committed
minor #368 Update GitHub Actions checkout to v5 (OskarStark)
This PR was merged into the main branch. Discussion ---------- Update GitHub Actions checkout to v5 | Q | A | ------------- | --- | Bug fix? | no | New feature? | no | Docs? | no | Issues | -- | License | MIT Update all workflow files to use actions/checkout@v5 instead of v4 Commits ------- b6b62cf Update GitHub Actions checkout to v5
2 parents c839ddc + b6b62cf commit b7a1d32

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/code-quality.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
php-version: [ '8.4' ]
2525
steps:
2626
- name: Checkout
27-
uses: actions/checkout@v4
27+
uses: actions/checkout@v5
2828

2929
- name: Configure environment
3030
run: |

.github/workflows/doctor-rst.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717
steps:
1818
- name: Checkout
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v5
2020

2121
- name: Create cache dir
2222
run: mkdir .cache

.github/workflows/unit-tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
SYMFONY_REQUIRE: ${{ matrix.symfony-version || '>=6.4' }}
3939

4040
steps:
41-
- uses: actions/checkout@v4
41+
- uses: actions/checkout@v5
4242

4343
- name: Configure environment
4444
run: |

0 commit comments

Comments
 (0)