diff --git a/.github/workflows/larastan.yml b/.github/workflows/larastan.yml index 79bd941..e1d62bf 100644 --- a/.github/workflows/larastan.yml +++ b/.github/workflows/larastan.yml @@ -29,7 +29,7 @@ jobs: - name: Get Composer cache directory id: composer-cache - run: echo "::set-output name=dir::$(composer config cache-files-dir)" + run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - name: Setup cache uses: pat-s/always-upload-cache@v1.1.4 diff --git a/.github/workflows/lint-js.yml b/.github/workflows/lint-js.yml index a551ee3..baac050 100644 --- a/.github/workflows/lint-js.yml +++ b/.github/workflows/lint-js.yml @@ -15,7 +15,7 @@ jobs: - name: Get yarn cache directory path id: yarn-cache-dir-path - run: echo "::set-output name=dir::$(yarn cache dir)" + run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT - uses: actions/cache@v2 id: yarn-cache diff --git a/.github/workflows/lint-php.yml b/.github/workflows/lint-php.yml index 38ddb2c..63c5260 100644 --- a/.github/workflows/lint-php.yml +++ b/.github/workflows/lint-php.yml @@ -30,7 +30,7 @@ jobs: - name: Get Composer cache directory id: composer-cache - run: echo "::set-output name=dir::$(composer config cache-files-dir)" + run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - name: Setup cache uses: pat-s/always-upload-cache@v1.1.4 diff --git a/.github/workflows/test-javascript.yml b/.github/workflows/test-javascript.yml index e07a0bf..aed5bd2 100644 --- a/.github/workflows/test-javascript.yml +++ b/.github/workflows/test-javascript.yml @@ -16,7 +16,7 @@ jobs: uses: actions/checkout@v3 - name: Get yarn cache directory path id: yarn-cache-dir-path - run: echo "::set-output name=dir::$(yarn cache dir)" + run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT - uses: actions/cache@v1 id: yarn-cache with: diff --git a/.github/workflows/test-php.yml b/.github/workflows/test-php.yml index 1741c34..9df932b 100644 --- a/.github/workflows/test-php.yml +++ b/.github/workflows/test-php.yml @@ -42,7 +42,7 @@ jobs: - name: Get Composer Cache Directory id: composer-cache - run: echo "::set-output name=dir::$(composer config cache-files-dir)" + run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - uses: actions/cache@v1 with: