Skip to content

Commit

Permalink
minor #168 ci: Update actions/checkout version (theofidry)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
chalasr committed Oct 14, 2023
2 parents d0e7e85 + 644852f commit 6d32f38
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/coding-standards.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: "ubuntu-latest"
steps:
- name: "checkout"
uses: "actions/checkout@v2"
uses: "actions/checkout@v4"

- name: "build the environment"
run: "dev/bin/docker-compose build"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/static-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: "ubuntu-latest"
steps:
- name: "checkout"
uses: "actions/checkout@v2"
uses: "actions/checkout@v4"

- name: "build the environment"
run: "dev/bin/docker-compose build"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:

steps:
- name: "checkout"
uses: "actions/checkout@v2"
uses: "actions/checkout@v4"

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

0 comments on commit 6d32f38

Please sign in to comment.