Skip to content

Commit 81205f6

Browse files
thirschthePanz
authored andcommitted
Updated gh workflow to use latest actions
1 parent 8bc7519 commit 81205f6

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/continuous-integration.yml

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

3131
steps:
3232
- name: Checkout
33-
uses: actions/checkout@v3
33+
uses: actions/checkout@v4
3434
with:
3535
submodules: "true"
3636

@@ -46,7 +46,7 @@ jobs:
4646
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
4747

4848
- name: Cache dependencies
49-
uses: actions/cache@v3
49+
uses: actions/cache@v4
5050
with:
5151
path: ${{ steps.composer-cache.outputs.dir }}
5252
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ jobs:
1010
name: 'PHP-CS-Fixer'
1111
runs-on: 'ubuntu-latest'
1212
steps:
13-
- uses: actions/checkout@v3
13+
- uses: actions/checkout@v4
1414

1515
- name: Setup PHP
1616
uses: shivammathur/setup-php@v2
1717
with:
1818
php-version: 8.2
1919
tools: php-cs-fixer:3.45, cs2pr
2020

21-
- uses: actions/cache@v3
21+
- uses: actions/cache@v4
2222
with:
2323
path: '.php-cs-fixer.cache'
2424
key: ${{ github.repository }}-8.2-phpcsfixer-${{ github.ref_name }}

0 commit comments

Comments
 (0)