Skip to content

Commit 3724f94

Browse files
committed
minor #51633 chore: fix ci deprecations (Chris8934)
This PR was squashed before being merged into the 5.4 branch. Discussion ---------- chore: fix ci deprecations | Q | A | ------------- | --- | Branch? | 5.4 | Bug fix? | yes | New feature? | no | Deprecations? | no | Tickets | Fix #... | License | MIT | Doc PR | symfony/symfony-docs#... <!-- required for new features --> Not a bugfix or a feature. Try to solve the ci deprecations Commits ------- 338e2da chore: fix ci deprecations
2 parents c557647 + 338e2da commit 3724f94

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

.github/workflows/integration-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ jobs:
107107

108108
steps:
109109
- name: Checkout
110-
uses: actions/checkout@v3
110+
uses: actions/checkout@v4
111111

112112
- name: Install system dependencies
113113
run: |
@@ -191,7 +191,7 @@ jobs:
191191
# sudo rm -rf .phpunit
192192
# [ -d .phpunit.bak ] && mv .phpunit.bak .phpunit
193193

194-
- uses: marceloprado/has-changed-path@v1
194+
- uses: marceloprado/has-changed-path@v1.0.1
195195
id: changed-translation-files
196196
with:
197197
paths: src/**/Resources/translations/*.xlf

.github/workflows/intl-data-tests.yml

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

3535
steps:
3636
- name: Checkout
37-
uses: actions/checkout@v3
37+
uses: actions/checkout@v4
3838

3939
- name: Install system dependencies
4040
run: |

.github/workflows/package-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: Ubuntu-20.04
1515
steps:
1616
- name: Checkout code
17-
uses: actions/checkout@v2
17+
uses: actions/checkout@v4
1818

1919
- name: Fetch branch from where the PR started
2020
run: git fetch --no-tags --prune --depth=1 origin +refs/heads/*:refs/remotes/origin/*

.github/workflows/phpunit-bridge.yml

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

2727
steps:
2828
- name: Checkout
29-
uses: actions/checkout@v3
29+
uses: actions/checkout@v4
3030

3131
- name: Setup PHP
3232
uses: shivammathur/setup-php@v2

.github/workflows/psalm.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@ jobs:
3030
coverage: none
3131

3232
- name: Checkout target branch
33-
uses: actions/checkout@v3
33+
uses: actions/checkout@v4
3434
with:
3535
ref: ${{ github.base_ref }}
3636

3737
- name: Checkout PR
38-
uses: actions/checkout@v3
38+
uses: actions/checkout@v4
3939

4040
- name: Install dependencies
4141
run: |

.github/workflows/unit-tests.yml

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

4141
steps:
4242
- name: Checkout
43-
uses: actions/checkout@v3
43+
uses: actions/checkout@v4
4444
with:
4545
fetch-depth: 2
4646

0 commit comments

Comments
 (0)