Skip to content

Commit b8ccf10

Browse files
author
Greg Bowler
authored
Merge branch 'master' into v6
2 parents 6e1a522 + dafcade commit b8ccf10

File tree

5 files changed

+348
-784
lines changed

5 files changed

+348
-784
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: CI
2+
3+
on: [push]
4+
5+
jobs:
6+
build-test:
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- uses: actions/checkout@v2
11+
12+
- name: Install dependencies
13+
uses: php-actions/composer@v6
14+
with:
15+
php_version: '8.1'
16+
ssh_key: ${{ secrets.SSH_KEY }}
17+
ssh_key_pub: ${{ secrets.SSH_KEY_PUB }}

.github/workflows/ci.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,9 @@ jobs:
1111

1212
- name: Install dependencies
1313
uses: php-actions/composer@v6
14+
1415
with:
15-
php_version: 8.0
16+
php_version: '8.1'
1617
ssh_key: ${{ secrets.SSH_KEY }}
1718
ssh_key_pub: ${{ secrets.SSH_KEY_PUB }}
1819

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
],
1111

1212
"require": {
13-
"phpgt/webengine": "3.*",
13+
"phpgt/webengine": "^v4",
1414
"php-actions/example-private-repo": "dev-master"
1515
},
1616

0 commit comments

Comments
 (0)