From 8a1b5fc2b04083092cd94c5596cc3a153aeb85c6 Mon Sep 17 00:00:00 2001 From: "Eloy Lafuente (stronk7)" Date: Fri, 2 Feb 2024 16:56:35 +0100 Subject: [PATCH] MDL-80816 core: Bump actions to newer versions All the new ones are Nodejs 20 based, because Nodejs 16 is being deprecated @ GH environments. https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20 --- .github/workflows/push.yml | 6 +++--- .github/workflows/windows.yml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 009119c064c..fca52fac227 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -23,10 +23,10 @@ jobs: steps: - name: Checking out code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Configuring node & npm - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version-file: '.nvmrc' @@ -103,7 +103,7 @@ jobs: coverage: none - name: Checking out code from ${{ env.GITHUB_REF_SLUG }} - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setting up PHPUnit env: diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 798457d3c4a..3c5627ee0d5 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -16,10 +16,10 @@ jobs: git config --global core.eol lf - name: Checking out code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Configuring node & npm - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version-file: '.nvmrc' @@ -112,7 +112,7 @@ jobs: git config --global core.eol lf - name: Checking out code from ${{ env.GITHUB_REF_SLUG }} - uses: actions/checkout@v3 + uses: actions/checkout@v4 # Needs to be done after php is available, git configured and Moodle checkout has happened. - name: Setting up moodle-exttests service