diff options
| author | 2022-10-12 13:00:11 +0200 | |
|---|---|---|
| committer | 2022-10-12 13:00:11 +0200 | |
| commit | ea283a16fc2b902370bd809bc19e487db771905d (patch) | |
| tree | 6ef5669d8d29e1feda54c0f00fa3bd719f679b28 | |
| parent | 4692242889e0e0b0060b4b0744a71470d3d1ecb9 (diff) | |
Update GitHub Actions version (#4717)
https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/
| -rw-r--r-- | .github/workflows/tests.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index d8c52cd77..5751f685b 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -14,7 +14,7 @@ jobs: steps: - name: Git checkout source code - uses: actions/checkout@v2 + uses: actions/checkout@v3 # Composer tests @@ -29,7 +29,7 @@ jobs: - name: Use Composer cache id: composer-cache - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: vendor key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }} @@ -52,7 +52,7 @@ jobs: # NPM tests - name: Uses Node.js - uses: actions/setup-node@v2 + uses: actions/setup-node@v3 with: # https://nodejs.org/en/about/releases/ node-version: '16' @@ -76,7 +76,7 @@ jobs: - name: Use shell cache id: shell-cache - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: bin key: ${{ runner.os }}-bin-shfmt@v3.5.1-hadolint@v2.10.0-typos@v1.10.1 |
