Skip to content

Commit bc52c6d

Browse files
committed
Fix actions/* usage
1 parent 460df5d commit bc52c6d

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/diagnostics.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
steps:
2222
- name: Pull source
23-
uses: actions/checkout@v4
23+
uses: actions/checkout@v6
2424

2525
- name: Setup PHP with PECL extension
2626
uses: shivammathur/setup-php@v2
@@ -29,15 +29,15 @@ jobs:
2929

3030
# setup caches
3131
- name: Cache composer cache directory
32-
uses: actions/cache@v4
32+
uses: actions/cache@v5
3333
env:
3434
cache-name: composer-cache-dir
3535
with:
3636
path: ~/.cache/composer
3737
key: ${{ runner.os }}-${{ matrix.php }}-build-${{ env.cache-name }}
3838

3939
- name: Cache vendor directory
40-
uses: actions/cache@v4
40+
uses: actions/cache@v5
4141
env:
4242
cache-name: vendor
4343
with:
@@ -47,7 +47,7 @@ jobs:
4747
${{ runner.os }}-${{ matrix.php }}-${{ matrix.contao }}-build-${{ env.cache-name }}-
4848
4949
- name: Cache phpcq directory
50-
uses: actions/cache@v4
50+
uses: actions/cache@v5
5151
env:
5252
cache-name: phpcq
5353
with:
@@ -69,7 +69,7 @@ jobs:
6969
run: ./vendor/bin/phpcq run -v ${{ matrix.output }}
7070

7171
- name: Upload build directory to artifact
72-
uses: actions/upload-artifact@v4
72+
uses: actions/upload-artifact@v7
7373
if: success() || failure()
7474
with:
7575
name: phpcq-builds-php-${{ matrix.php }}-${{ matrix.contao }}

0 commit comments

Comments
 (0)