Skip to content

Commit 4aefd23

Browse files
authored
Issue #205: Update GitHub actions.
1 parent d1724d1 commit 4aefd23

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/coding-standards.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,18 @@ jobs:
88
- name: Setup PHP
99
uses: shivammathur/setup-php@v2
1010
with:
11-
php-version: '7.2'
11+
php-version: '7.4'
1212
coverage: none
1313

14-
- uses: actions/checkout@v2
14+
- uses: actions/checkout@v4
1515

1616
- name: Get composer cache directory
1717
id: composer-cache
1818
run: |
1919
echo "::set-output name=dir::$(composer config cache-files-dir)"
2020
2121
- name: Cache composer directory
22-
uses: actions/cache@v2
22+
uses: actions/cache@v4
2323
with:
2424
path: ${{ steps.composer-cache.outputs.dir }}
2525
key: ${{ runner.os }}-composer-${{ hashFiles('./composer.json') }}

.github/workflows/functional-tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,18 +28,18 @@ jobs:
2828
coverage: none
2929

3030
- name: Checkout Backdrop core
31-
uses: actions/checkout@v2
31+
uses: actions/checkout@v4
3232
with:
3333
repository: backdrop/backdrop
3434

3535
- name: Checkout Entity Plus
36-
uses: actions/checkout@v2
36+
uses: actions/checkout@v4
3737
with:
3838
repository: backdrop-contrib/entity_plus
3939
path: modules/entity_plus
4040

4141
- name: Checkout module
42-
uses: actions/checkout@v2
42+
uses: actions/checkout@v4
4343
with:
4444
path: modules/${{ env.REPO_NAME }}
4545

0 commit comments

Comments
 (0)