Skip to content

Commit

Permalink
Do not use the set-output command in GitHub CI
Browse files Browse the repository at this point in the history
  • Loading branch information
kocsismate committed Aug 16, 2023
1 parent 6dc51cc commit da39dd4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:

- name: "Determine Composer cache directory"
id: composer-cache
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
run: echo "name=dir::$(composer config cache-files-dir)" >> $GITHUB_OUTPUT"

- name: "Cache dependencies"
uses: actions/cache@v3
Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:

- name: "Determine Composer cache directory"
id: composer-cache
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
run: echo "name=dir::$(composer config cache-files-dir)" >> $GITHUB_OUTPUT"

- name: "Cache dependencies"
uses: actions/cache@v3
Expand Down Expand Up @@ -106,7 +106,7 @@ jobs:

- name: "Determine Composer cache directory"
id: composer-cache
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
run: echo "name=dir::$(composer config cache-files-dir)" >> $GITHUB_OUTPUT"

- name: "Cache dependencies"
uses: actions/cache@v3
Expand Down Expand Up @@ -145,7 +145,7 @@ jobs:

- name: "Determine Composer cache directory"
id: composer-cache
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
run: echo "name=dir::$(composer config cache-files-dir)" >> $GITHUB_OUTPUT"

- name: "Cache dependencies"
uses: actions/cache@v3
Expand Down

0 comments on commit da39dd4

Please sign in to comment.