Skip to content

Commit e3aaea7

Browse files
committed
Upgrade deprecated CI packages
1 parent 81520ab commit e3aaea7

File tree

4 files changed

+4
-31
lines changed

4 files changed

+4
-31
lines changed

.github/workflows/codestyle.yml

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -26,17 +26,8 @@ jobs:
2626
php-version: ${{ matrix.php }}
2727
- name: Validate Composer
2828
run: composer validate
29-
- name: Get Composer Cache Directory
30-
id: composer-cache
31-
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
32-
- name: Restore Composer Cache
33-
uses: actions/cache@v1
34-
with:
35-
path: ${{ steps.composer-cache.outputs.dir }}
36-
key: ${{ runner.os }}-${{ matrix.php }}-composer-${{ hashFiles('**/composer.json') }}
37-
restore-keys: ${{ runner.os }}-${{ matrix.php }}-composer-
3829
- name: Install Dependencies
39-
uses: nick-invision/retry@v1
30+
uses: nick-invision/retry@v2
4031
with:
4132
timeout_minutes: 5
4233
max_attempts: 5

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- name: Validate Composer
3333
run: composer validate
3434
- name: Install Dependencies
35-
uses: nick-invision/retry@v1
35+
uses: nick-invision/retry@v2
3636
with:
3737
timeout_minutes: 5
3838
max_attempts: 5

.github/workflows/security.yml

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -28,17 +28,8 @@ jobs:
2828
php-version: ${{ matrix.php }}
2929
- name: Validate Composer
3030
run: composer validate
31-
- name: Get Composer Cache Directory
32-
id: composer-cache
33-
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
34-
- name: Restore Composer Cache
35-
uses: actions/cache@v1
36-
with:
37-
path: ${{ steps.composer-cache.outputs.dir }}
38-
key: ${{ runner.os }}-${{ matrix.php }}-composer-${{ hashFiles('**/composer.json') }}
39-
restore-keys: ${{ runner.os }}-${{ matrix.php }}-composer-
4031
- name: Install Dependencies
41-
uses: nick-invision/retry@v1
32+
uses: nick-invision/retry@v2
4233
with:
4334
timeout_minutes: 5
4435
max_attempts: 5

.github/workflows/static-analysis.yml

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -26,17 +26,8 @@ jobs:
2626
php-version: ${{ matrix.php }}
2727
- name: Validate Composer
2828
run: composer validate
29-
- name: Get Composer Cache Directory
30-
id: composer-cache
31-
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
32-
- name: Restore Composer Cache
33-
uses: actions/cache@v1
34-
with:
35-
path: ${{ steps.composer-cache.outputs.dir }}
36-
key: ${{ runner.os }}-${{ matrix.php }}-composer-${{ hashFiles('**/composer.json') }}
37-
restore-keys: ${{ runner.os }}-${{ matrix.php }}-composer-
3829
- name: Install Dependencies
39-
uses: nick-invision/retry@v1
30+
uses: nick-invision/retry@v2
4031
with:
4132
timeout_minutes: 5
4233
max_attempts: 5

0 commit comments

Comments
 (0)