Skip to content

Commit a904b6d

Browse files
authored
test on PHP 8.5 (#18)
1 parent 0d13d9d commit a904b6d

File tree

9 files changed

+440
-1764
lines changed

9 files changed

+440
-1764
lines changed

.github/workflows/changelog-release.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,7 @@ jobs:
1919
- name: "Get tag name"
2020
id: "tag-name"
2121
run: |
22-
tag=$(echo ${{ github.event.ref }} | cut -c11-)
23-
echo "::set-output name=tag::$tag"
22+
echo "tag=$(echo ${{ github.event.ref }} | cut -c11-)" >> $GITHUB_OUTPUT
2423
2524
- name: "Update CHANGELOG"
2625
uses: "docker://aeonphp/automation:latest"

.github/workflows/changelog-update.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717

1818
steps:
1919
- name: "Checkout"
20-
uses: "actions/checkout@v2"
20+
uses: "actions/checkout@v6"
2121

2222
- name: "Restore Automation cache"
2323
uses: "actions/cache@v2"

.github/workflows/dependabot-auto-merge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
steps:
1313
- name: Dependabot metadata
1414
id: metadata
15-
uses: dependabot/fetch-metadata@v1
15+
uses: dependabot/fetch-metadata@v2
1616
with:
1717
github-token: "${{ secrets.GITHUB_TOKEN }}"
1818
- name: Enable auto-merge for Dependabot PRs

.github/workflows/static-analyze.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525

2626
steps:
2727
- name: "Checkout"
28-
uses: "actions/checkout@v2"
28+
uses: "actions/checkout@v6"
2929

3030
- name: "Install PHP"
3131
uses: "shivammathur/setup-php@v2"

.github/workflows/testsuite.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,11 @@ jobs:
2121
- "lowest"
2222
- "highest"
2323
php-version:
24+
- "8.5"
25+
- "8.4"
26+
- "8.3"
27+
- "8.2"
28+
- "8.1"
2429
- "8.0"
2530
- "7.4"
2631
- "7.3"
@@ -30,7 +35,7 @@ jobs:
3035

3136
steps:
3237
- name: "Checkout"
33-
uses: "actions/checkout@v2"
38+
uses: "actions/checkout@v6"
3439

3540
- name: "Install PHP"
3641
uses: "shivammathur/setup-php@v2"

0 commit comments

Comments
 (0)