Skip to content

Commit

Permalink
GH Actions: version update for various predefined actions
Browse files Browse the repository at this point in the history
A number of predefined actions have had major release, which warrant an update to 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
  • Loading branch information
jrfnl committed Mar 5, 2022
1 parent 93ebd00 commit 828d41a
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
composer-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: composer
uses: docker://composer
Expand All @@ -32,7 +32,7 @@ jobs:
runs-on: ubuntu-latest
name: Unit tests
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Setup PHP
uses: shivammathur/setup-php@v2
Expand Down Expand Up @@ -74,7 +74,7 @@ jobs:
- phpunit-with-coverage

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Setup cache environment
id: cache-env
Expand Down Expand Up @@ -121,7 +121,7 @@ jobs:
runs-on: ubuntu-latest
needs: [phpunit]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: composer
uses: docker://composer
env:
Expand All @@ -145,7 +145,7 @@ jobs:
runs-on: ubuntu-latest
needs: [phpunit]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: composer
uses: docker://composer
env:
Expand Down Expand Up @@ -176,7 +176,7 @@ jobs:
- phpunit

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Setup cache environment
id: cache-env
Expand Down Expand Up @@ -212,7 +212,7 @@ jobs:
runs-on: ubuntu-latest
needs: [phpunit]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: fetch tags
run: git fetch --depth=1 origin +refs/tags/*:refs/tags/*
- name: composer
Expand Down Expand Up @@ -246,7 +246,7 @@ jobs:
BLACKFIRE_SERVER_TOKEN: "21795bdce7c0b5d24f0ccbb42e2a7518feb5359840752b163652899f927cbf2b"

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Setup PHP
uses: shivammathur/setup-php@v2
Expand Down

0 comments on commit 828d41a

Please sign in to comment.