Skip to content

Commit d896d62

Browse files
authored
Merge pull request #4340 from greg0ire/modernize-existing-ga
Modernize existing ga
2 parents e79dcb8 + 95ef20f commit d896d62

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on: ["pull_request", "push"]
66
jobs:
77
static-analysis-phpstan:
88
name: "Static Analysis with PHPStan"
9-
runs-on: "ubuntu-latest"
9+
runs-on: "ubuntu-20.04"
1010

1111
strategy:
1212
matrix:
@@ -25,7 +25,7 @@ jobs:
2525
tools: "cs2pr"
2626

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

4040
static-analysis-psalm:
4141
name: "Static Analysis with Psalm"
42-
runs-on: "ubuntu-latest"
42+
runs-on: "ubuntu-20.04"
4343

4444
strategy:
4545
matrix:
@@ -71,7 +71,7 @@ jobs:
7171

7272
phpunit-oci8:
7373
name: "PHPUnit on OCI8"
74-
runs-on: "ubuntu-latest"
74+
runs-on: "ubuntu-20.04"
7575

7676
strategy:
7777
matrix:
@@ -115,7 +115,7 @@ jobs:
115115

116116
phpunit-pdo-oci:
117117
name: "PHPUnit on PDO_OCI"
118-
runs-on: "ubuntu-latest"
118+
runs-on: "ubuntu-20.04"
119119

120120
strategy:
121121
matrix:

0 commit comments

Comments
 (0)