Skip to content

Commit dac8384

Browse files
committed
bug #1499 [CI] Bump github actions (rosier)
This PR was merged into the main branch. Discussion ---------- [CI] Bump github actions Fixes warnings: Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, actions/cache@v3. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/. Commits ------- d6f78bd [CI] Bump github actions
2 parents 84c378f + d6f78bd commit dac8384

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/lint.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ubuntu-latest
1919
steps:
2020
- name: "Checkout code"
21-
uses: actions/checkout@v3
21+
uses: actions/checkout@v4
2222

2323
- name: PHP-CS-Fixer
2424
uses: docker://oskarstark/php-cs-fixer-ga
@@ -34,7 +34,7 @@ jobs:
3434

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

3939
- name: "Install PHP with extensions"
4040
uses: shivammathur/setup-php@v2
@@ -49,7 +49,7 @@ jobs:
4949
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
5050

5151
- name: "Cache composer"
52-
uses: actions/cache@v3
52+
uses: actions/cache@v4
5353
with:
5454
path: ${{ steps.composer-cache.outputs.dir }}
5555
key: ${{ runner.os }}-composer-${{ hashFiles('composer.lock') }}

.github/workflows/tests.yaml

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

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

3939
- name: "Install PHP with extensions"
4040
uses: shivammathur/setup-php@v2
@@ -53,7 +53,7 @@ jobs:
5353
shell: bash
5454

5555
- name: "Cache composer"
56-
uses: actions/cache@v3
56+
uses: actions/cache@v4
5757
with:
5858
path: ${{ steps.composer-cache.outputs.dir }}
5959
key: ${{ runner.os }}-composer-${{ hashFiles('composer.lock') }}

0 commit comments

Comments
 (0)