Skip to content

Commit 57fbec5

Browse files
minor symfony#48081 Update actions in the CI to move away from the deprecated runtime (stof)
This PR was merged into the 4.4 branch. Discussion ---------- Update actions in the CI to move away from the deprecated runtime | Q | A | ------------- | --- | Branch? | 4.4 | Bug fix? | no | New feature? | no | Deprecations? | no | Tickets | n/a | License | MIT | Doc PR | n/a For official actions, the usage of the new node-16 runner was released as a major version of the actions (because it breaks compatibility with older versions of GitHub Enterprise Server). This updates our workflows to use that new version. Commits ------- 5cff81d Update actions in the CI to move away from the deprecated runtime
2 parents d6ab2b0 + 5cff81d commit 57fbec5

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/integration-tests.yml

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

7373
steps:
7474
- name: Checkout
75-
uses: actions/checkout@v2
75+
uses: actions/checkout@v3
7676

7777
- name: Install system dependencies
7878
run: |

.github/workflows/intl-data-tests.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@v2
29+
uses: actions/checkout@v3
3030

3131
- name: Install system dependencies
3232
run: |

.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@v2
29+
uses: actions/checkout@v3
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
@@ -29,12 +29,12 @@ jobs:
2929
coverage: none
3030

3131
- name: Checkout target branch
32-
uses: actions/checkout@v2
32+
uses: actions/checkout@v3
3333
with:
3434
ref: ${{ github.base_ref }}
3535

3636
- name: Checkout PR
37-
uses: actions/checkout@v2
37+
uses: actions/checkout@v3
3838

3939
- name: Install dependencies
4040
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@v2
43+
uses: actions/checkout@v3
4444
with:
4545
fetch-depth: 2
4646

0 commit comments

Comments
 (0)