Skip to content

Commit 6d32f38

Browse files
committed
minor #168 ci: Update actions/checkout version (theofidry)
This PR was merged into the 0.4-dev branch. Discussion ---------- ci: Update actions/checkout version This allows to get rid of the following deprecations: ``` PHP 7.2 - Symfony 5.4.* - Composer --prefer-stable --prefer-lowest The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2. ``` Commits ------- 644852f ci: Update actions/checkout version
2 parents d0e7e85 + 644852f commit 6d32f38

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/coding-standards.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: "ubuntu-latest"
99
steps:
1010
- name: "checkout"
11-
uses: "actions/checkout@v2"
11+
uses: "actions/checkout@v4"
1212

1313
- name: "build the environment"
1414
run: "dev/bin/docker-compose build"

.github/workflows/static-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: "ubuntu-latest"
99
steps:
1010
- name: "checkout"
11-
uses: "actions/checkout@v2"
11+
uses: "actions/checkout@v4"
1212

1313
- name: "build the environment"
1414
run: "dev/bin/docker-compose build"

.github/workflows/unit-tests.yml

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

4848
steps:
4949
- name: "checkout"
50-
uses: "actions/checkout@v2"
50+
uses: "actions/checkout@v4"
5151

5252
- name: "build the PHP7 environment"
5353
run: "dev/bin/docker-compose build --build-arg PHP_VERSION=${{ matrix.php }} php"

0 commit comments

Comments
 (0)