Skip to content

Commit

Permalink
LPD-15905 Upgrade deprecated actions to Node 20
Browse files Browse the repository at this point in the history
Actions using Node 16 are deprecated and should be updated to Node 20
actions.
  • Loading branch information
christiaan committed Jun 18, 2024
1 parent cbb6824 commit b6ec6a5
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand All @@ -27,7 +27,7 @@ jobs:
php-version: '8.3'

- name: Composer Install
uses: ramsey/composer-install@v2
uses: ramsey/composer-install@v3

- name: Create build
run: make dist
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/nightly.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'

- name: Composer Install
uses: ramsey/composer-install@v2
uses: ramsey/composer-install@v3

- name: Test
run: make static-analysis unit-tests acceptance-tests
Expand All @@ -28,7 +28,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup PHP
uses: shivammathur/setup-php@v2
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ jobs:

steps:
- name: checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}

- name: Composer Install
uses: ramsey/composer-install@v2
uses: ramsey/composer-install@v3

- name: Test
run: make static-analysis unit-tests acceptance-tests coding-standards
Expand Down

0 comments on commit b6ec6a5

Please sign in to comment.