From e24b43e990af4624b798c73366cdfc00c6a176e2 Mon Sep 17 00:00:00 2001 From: jrfnl Date: Sat, 5 Mar 2022 15:58:55 +0100 Subject: [PATCH] GH Actions: version update for various predefined actions A number of predefined actions have had major release, which warrant an update the workflow(s). These updates don't actually contain any changed functionality, they are mostly just a change of the Node version used by the action itself (from Node 14 to Node 16). Refs: * https://github.com/actions/checkout/releases --- .github/workflows/continuous-integration.yml | 12 ++++++------ README.md | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index e416b84..84710ef 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -16,7 +16,7 @@ jobs: runs-on: "ubuntu-latest" steps: - name: "Checkout repository" - uses: "actions/checkout@v2" + uses: "actions/checkout@v3" - name: "Set up PHP" uses: "shivammathur/setup-php@v2" with: @@ -36,7 +36,7 @@ jobs: - "v2" steps: - name: "Checkout repository" - uses: "actions/checkout@v2" + uses: "actions/checkout@v3" - name: "Install expect" run: | sudo apt-get update @@ -57,7 +57,7 @@ jobs: runs-on: "ubuntu-latest" steps: - name: "Checkout repository" - uses: "actions/checkout@v2" + uses: "actions/checkout@v3" - name: "Install expect" run: | sudo apt-get update @@ -88,7 +88,7 @@ jobs: runs-on: "ubuntu-latest" steps: - name: "Checkout repository" - uses: "actions/checkout@v2" + uses: "actions/checkout@v3" - name: "Run shellcheck" run: "shellcheck --exclude=SC2230 bin/*.sh tests/*.sh" @@ -115,7 +115,7 @@ jobs: - "" steps: - name: "Checkout repository" - uses: "actions/checkout@v2" + uses: "actions/checkout@v3" - name: "Set up PHP" uses: "shivammathur/setup-php@v2" with: @@ -232,7 +232,7 @@ jobs: - "v2" steps: - name: "Checkout repository" - uses: "actions/checkout@v2" + uses: "actions/checkout@v3" - name: "Set up PHP" uses: "shivammathur/setup-php@v2" with: diff --git a/README.md b/README.md index 194a26a..a9c2b9c 100644 --- a/README.md +++ b/README.md @@ -172,7 +172,7 @@ strategy: composer-options: "--ignore-platform-reqs" steps: - - uses: "actions/checkout@v2" + - uses: "actions/checkout@v3" - uses: "shivammathur/setup-php@v2" with: php-version: "${{ matrix.php }}"