diff --git a/.github/workflows/feature.yaml b/.github/workflows/feature.yaml index f711eb72..0b8ee816 100644 --- a/.github/workflows/feature.yaml +++ b/.github/workflows/feature.yaml @@ -31,7 +31,7 @@ jobs: # - 3306:3306 # options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3 steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v3 - name: Setup PHP with tools uses: shivammathur/setup-php@v2 @@ -45,10 +45,10 @@ 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: Cache dependencies - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ${{ steps.composer-cache.outputs.dir }} key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}