Skip to content

Commit 0b6e0ec

Browse files
authored
Update CI actions to latest versions and add manual dispatch (#9)
* Update CI actions to latest versions and add manual dispatch * Update actions/checkout to v6
1 parent b50a6f2 commit 0b6e0ec

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/checks.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55
branches:
66
- "master"
77
- "v[0-9]"
8+
workflow_dispatch:
89
jobs:
910
checks:
1011
runs-on: ${{ matrix.os }}
@@ -16,7 +17,7 @@ jobs:
1617
steps:
1718
-
1819
name: Checkout code
19-
uses: actions/checkout@v4
20+
uses: actions/checkout@v6
2021
-
2122
name: Setup PHP
2223
uses: shivammathur/setup-php@v2

.github/workflows/lint.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,15 @@ on:
55
branches:
66
- "master"
77
- "v[0-9]"
8+
workflow_dispatch:
89

910
jobs:
1011
xml-linter:
1112
runs-on: ubuntu-latest
1213
steps:
1314
-
1415
name: Checkout code
15-
uses: actions/checkout@v4
16+
uses: actions/checkout@v6
1617

1718
-
1819
name: Install dependencies

0 commit comments

Comments
 (0)