Skip to content

Commit 89f5b02

Browse files
committed
update github actions to latest version and use semantic branch naming
1 parent 2c2f891 commit 89f5b02

File tree

4 files changed

+12
-10
lines changed

4 files changed

+12
-10
lines changed

.github/workflows/test-application.yaml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@ on:
44
pull_request:
55
push:
66
branches:
7-
- 'master'
7+
- '[0-9]+.x'
8+
- '[0-9]+.[0-9]+'
9+
- '[0-9]+.[0-9]+.x'
810

911
jobs:
1012
test:
@@ -26,10 +28,11 @@ jobs:
2628
- php-version: '7.4'
2729
- php-version: '8.0'
2830
- php-version: '8.1'
31+
- php-version: '8.2'
2932

3033
steps:
3134
- name: Checkout project
32-
uses: actions/checkout@v2
35+
uses: actions/checkout@v3
3336

3437
- name: Install and configure PHP
3538
uses: shivammathur/setup-php@v2
@@ -38,7 +41,7 @@ jobs:
3841
tools: 'composer:v2'
3942

4043
- name: Install dependencies with Composer
41-
uses: ramsey/composer-install@v1
44+
uses: ramsey/composer-install@v2
4245
with:
4346
dependency-versions: ${{ matrix.dependencies }}
4447
composer-options: --prefer-dist

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
Changelog
22
=========
33

4+
2.1.7
5+
-----
6+
7+
* **2023-02-18**: Adjust documentation links in README
8+
49
2.1.6
510
-----
611

composer.json

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,5 @@
3737
"psr-0": {
3838
"PHPCR": "tests"
3939
}
40-
},
41-
"extra": {
42-
"branch-alias": {
43-
"dev-master": "2.1-dev"
44-
}
4540
}
4641
}

src/overview.html

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
<body>
1111

12-
<p>PHP Content Repository API based on the Java Content Repository specification (<a href="http://java.net/projects/jsr-283/">JSR-283</a>). If you know JCR, get the <a href="https://raw.github.com/phpcr/phpcr/master/doc/JCR_TO_PHPCR.txt">differences between PHPCR and JCR at a glance</a>. To learn PHPCR, please have a look at our <a href="https://github.com/phpcr/phpcr/blob/master/doc/Tutorial.md">tutorial</a>.</p>
12+
<p>PHP Content Repository API based on the Java Content Repository specification (<a href="http://java.net/projects/jsr-283/">JSR-283</a>). If you know JCR, get the <a href="https://raw.github.com/phpcr/phpcr/2.1.x/doc/JCR_TO_PHPCR.txt">differences between PHPCR and JCR at a glance</a>. To learn PHPCR, please have a look at our <a href="https://github.com/phpcr/phpcr/blob/2.1.x/doc/Tutorial.md">tutorial</a>.</p>
1313
<br />
1414
<h2>Basic Workflow</h2>
1515

@@ -38,4 +38,3 @@ <h2>Basic Workflow</h2>
3838

3939
</body>
4040
</html>
41-

0 commit comments

Comments
 (0)