Skip to content

Commit f0d8193

Browse files
Update test matrix for Statamic v6 (#153)
Co-authored-by: edalzell <erin@silentz.co>
1 parent 52723bf commit f0d8193

2 files changed

Lines changed: 27 additions & 4 deletions

File tree

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: GitHub Actions Version Updater
2+
3+
# Controls when the action will run.
4+
on:
5+
schedule:
6+
# Automatically run first day of every month
7+
- cron: '0 0 1 * *'
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- uses: actions/checkout@v6.0.2
15+
with:
16+
# [Required] Access token with `workflow` scope.
17+
token: ${{ secrets.WORKFLOW_SECRET }}
18+
19+
- name: Run GitHub Actions Version Updater
20+
uses: saadmk11/github-actions-version-updater@v0.9.0
21+
with:
22+
# [Required] Access token with `workflow` scope.
23+
token: ${{ secrets.WORKFLOW_SECRET }}

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,18 @@ jobs:
99
runs-on: ${{ matrix.os }}
1010
strategy:
1111
matrix:
12-
php: [8.3, 8.4]
13-
laravel: [11.*, 12.*]
12+
php: [8.3, 8.4, 8.5]
13+
laravel: [12.*, 13.*]
1414
stability: [prefer-lowest, prefer-stable]
1515
os: [ubuntu-latest]
1616
dependency-version: [prefer-stable]
1717
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} - ubuntu-latest
1818
steps:
1919
- name: Checkout code
20-
uses: actions/checkout@v3
20+
uses: actions/checkout@v6
2121

2222
- name: Cache dependencies
23-
uses: actions/cache@v4
23+
uses: actions/cache@v5
2424
with:
2525
path: ~/.composer/cache/files
2626
key: dependencies-laravel-${{ matrix.laravel }}-php-${{ matrix.php }}-composer-${{ hashFiles('composer.json') }}

0 commit comments

Comments
 (0)