Skip to content

Commit c5603d4

Browse files
committed
ci: resolve deprecations in github workflows
1 parent ad1a226 commit c5603d4

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

.github/workflows/run-test-suite.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,7 @@ jobs:
8585

8686
- name: Get Composer Cache Directory
8787
id: composer-cache
88-
run: |
89-
echo "::set-output name=dir::$(composer config cache-files-dir)"
88+
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
9089

9190
- name: Cache Composer Dependencies
9291
uses: actions/cache@v3

.github/workflows/security-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030

3131
- name: Get Composer Cache Directory
3232
id: composer-cache
33-
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
33+
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
3434

3535
- name: Cache Dependencies
3636
uses: actions/cache@v3

.github/workflows/static-analysis.yml

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

3131
- name: Get Composer Cache Directory
3232
id: composer-cache
33-
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
33+
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
3434

3535
- name: Cache Dependencies
3636
uses: actions/cache@v3
@@ -68,7 +68,7 @@ jobs:
6868

6969
- name: Get Composer Cache Directory
7070
id: composer-cache
71-
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
71+
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
7272

7373
- name: Cache Dependencies
7474
uses: actions/cache@v3

0 commit comments

Comments
 (0)