File tree Expand file tree Collapse file tree 7 files changed +76
-9
lines changed
Expand file tree Collapse file tree 7 files changed +76
-9
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ permissions:
1313
1414jobs :
1515 dependency-review :
16- runs-on : ubuntu-latest
16+ runs-on : ubuntu-24.04
1717 steps :
1818 - name : ' Checkout Repository'
1919 uses : actions/checkout@v4
Original file line number Diff line number Diff line change 1+ ---
2+ on : pull_request
3+ name : GitHub Actions
4+
5+ # Detect if this action is already running, and cancel it.
6+ # This most likely happened because a second push has been made to a branch.
7+ concurrency :
8+ group : ${{ github.repository_id }}-${{ github.workflow }}-${{ github.ref }}
9+ cancel-in-progress : true
10+
11+ permissions :
12+ contents : read
13+ pull-requests : write
14+
15+ jobs :
16+ actionlint :
17+ name : Actionlint
18+ runs-on : ubuntu-24.04
19+ steps :
20+ - uses : actions/checkout@v5
21+ - uses : reviewdog/action-actionlint@v1
Original file line number Diff line number Diff line change 11---
22name : Lint
3- permissions :
4- contents : read
53on : pull_request
64permissions :
75 contents : read
86
97jobs :
108 yamllint :
119 name : yaml
12- runs-on : ubuntu-22 .04
10+ runs-on : ubuntu-24 .04
1311 steps :
1412 - uses : actions/checkout@v4
1513 - name : Run yamllint
@@ -19,15 +17,15 @@ jobs:
1917
2018 markdownlint :
2119 name : markdown
22- runs-on : ubuntu-22 .04
20+ runs-on : ubuntu-24 .04
2321 steps :
2422 - uses : actions/checkout@v4
2523 - name : Run markdownlint
2624 uses : DavidAnson/markdownlint-cli2-action@v20
2725
2826 actionlint :
2927 name : action
30- runs-on : ubuntu-22 .04
28+ runs-on : ubuntu-24 .04
3129 steps :
3230 - uses : actions/checkout@v4
3331 - name : Run actionlint
Original file line number Diff line number Diff line change 1+ ---
2+ name : Markdown
3+ on : pull_request
4+
5+ # Detect if this action is already running, and cancel it.
6+ # This most likely happened because a second push has been made to a branch.
7+ concurrency :
8+ group : ${{ github.repository_id }}-${{ github.workflow }}-${{ github.ref }}
9+ cancel-in-progress : true
10+
11+ permissions :
12+ contents : read
13+ pull-requests : write
14+
15+ jobs :
16+ markdown :
17+ name : Markdownlint
18+ runs-on : ubuntu-24.04
19+ steps :
20+ - uses : actions/checkout@v4
21+ - name : Run markdownlint
22+ uses : DavidAnson/markdownlint-cli2-action@v20
23+ with :
24+ globs : |
25+ *.md
26+ docs/*.md
Original file line number Diff line number Diff line change 99
1010jobs :
1111 release :
12- runs-on : ubuntu-latest
12+ runs-on : ubuntu-24.04
1313 permissions :
1414 contents : write
1515 steps :
Original file line number Diff line number Diff line change 1010
1111jobs :
1212 build :
13- runs-on : ubuntu-latest
13+ runs-on : ubuntu-24.04
1414 steps :
1515 - uses : actions/checkout@v4
1616 with :
2222 - run : |
2323 npm run all
2424 test :
25- runs-on : ubuntu-latest
25+ runs-on : ubuntu-24.04
2626 steps :
2727 - uses : actions/checkout@v4
2828 - run : |
Original file line number Diff line number Diff line change 1+ ---
2+ on : pull_request
3+ name : YAML
4+ permissions :
5+ contents : read
6+
7+ # Detect if this action is already running, and cancel it.
8+ # This most likely happened because a second push has been made to a branch.
9+ concurrency :
10+ group : ${{ github.repository_id }}-${{ github.workflow }}-${{ github.ref }}
11+ cancel-in-progress : true
12+
13+ jobs :
14+ yaml-cs-fixer :
15+ name : Yamllint
16+ runs-on : ubuntu-24.04
17+ steps :
18+ - uses : actions/checkout@v5
19+ - name : Run Yamllint
20+ 21+ with :
22+ strict : true
You can’t perform that action at this time.
0 commit comments