Skip to content

Commit fcefe65

Browse files
committed
Correct the .github/workflows/diagnostics.yml
- Update the actions/checkout to version 3 - Update the actions/cache to version 3
1 parent ce0f3b5 commit fcefe65

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/diagnostics.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
steps:
1818
- name: PHP ${{ matrix.php }} ${{ matrix.contao }} Pull source
19-
uses: actions/checkout@v2
19+
uses: actions/checkout@v3
2020
with:
2121
fetch-depth: 0
2222

@@ -28,15 +28,15 @@ jobs:
2828
coverage: none
2929

3030
- name: PHP ${{ matrix.php }} ${{ matrix.contao }} Cache composer cache directory
31-
uses: actions/cache@v1
31+
uses: actions/cache@v3
3232
env:
3333
cache-name: composer-cache-dir
3434
with:
3535
path: ~/.cache/composer
3636
key: ${{ runner.os }}-build-${{ env.cache-name }}
3737

3838
- name: PHP ${{ matrix.php }} ${{ matrix.contao }} Cache vendor directory
39-
uses: actions/cache@v1
39+
uses: actions/cache@v3
4040
env:
4141
cache-name: composer-vendor
4242
with:

0 commit comments

Comments
 (0)