Skip to content

Commit

Permalink
Merge pull request #4340 from greg0ire/modernize-existing-ga
Browse files Browse the repository at this point in the history
Modernize existing ga
  • Loading branch information
greg0ire authored Oct 13, 2020
2 parents e79dcb8 + 95ef20f commit d896d62
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on: ["pull_request", "push"]
jobs:
static-analysis-phpstan:
name: "Static Analysis with PHPStan"
runs-on: "ubuntu-latest"
runs-on: "ubuntu-20.04"

strategy:
matrix:
Expand All @@ -25,7 +25,7 @@ jobs:
tools: "cs2pr"

- name: "Cache dependencies installed with composer"
uses: "actions/cache@v1"
uses: "actions/cache@v2"
with:
path: "~/.composer/cache"
key: "php-${{ matrix.php-version }}-composer-locked-${{ hashFiles('composer.lock') }}"
Expand All @@ -39,7 +39,7 @@ jobs:

static-analysis-psalm:
name: "Static Analysis with Psalm"
runs-on: "ubuntu-latest"
runs-on: "ubuntu-20.04"

strategy:
matrix:
Expand Down Expand Up @@ -71,7 +71,7 @@ jobs:

phpunit-oci8:
name: "PHPUnit on OCI8"
runs-on: "ubuntu-latest"
runs-on: "ubuntu-20.04"

strategy:
matrix:
Expand Down Expand Up @@ -115,7 +115,7 @@ jobs:

phpunit-pdo-oci:
name: "PHPUnit on PDO_OCI"
runs-on: "ubuntu-latest"
runs-on: "ubuntu-20.04"

strategy:
matrix:
Expand Down

0 comments on commit d896d62

Please sign in to comment.