From 41a6551dfee5252e85cfc9d06eb8cfc75e1f7259 Mon Sep 17 00:00:00 2001 From: "Eloy Lafuente (stronk7)" Date: Thu, 13 Oct 2022 08:53:27 +0200 Subject: [PATCH] MDL-75983 gha: Update used actions to be node16 compatible Node12 is being deprecated in github for actions: https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/ So we need to ensure we are using node16 actions. --- .github/workflows/push.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 13da8ae6790..4af195a9538 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -17,10 +17,10 @@ jobs: steps: - name: Checking out code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Configuring node & npm - uses: actions/setup-node@v2 + uses: actions/setup-node@v3 with: node-version-file: '.nvmrc' @@ -85,7 +85,7 @@ jobs: postgresql password: test - name: Configuring git vars - uses: rlespinasse/github-slug-action@v3.x + uses: rlespinasse/github-slug-action@v4 - name: Setting up PHP ${{ matrix.php }} uses: shivammathur/setup-php@v2 @@ -96,7 +96,7 @@ jobs: coverage: none - name: Checking out code from ${{ env.GITHUB_REF_SLUG }} - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Setting up PHPUnit env: