@@ -4,22 +4,22 @@ on: # yamllint disable-line rule:truthy
44 pull_request :
55 branches :
66 - master
7- push :
8- branches :
9- - master
107
118name : 🧹 Fix PHP coding standards
129
1310jobs :
1411 commit-linting :
1512 timeout-minutes : 4
1613 runs-on : ubuntu-latest
14+ concurrency :
15+ cancel-in-progress : true
16+ group : commit-linting-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
1717 permissions :
1818 contents : read
1919 pull-requests : read
2020 steps :
2121 - name : 📦 Check out the codebase
22- uses : actions/checkout@v4.1.6
22+ uses : actions/checkout@v4.1.7
2323
2424 - name : 🧐 Lint commits using "commitlint"
2525 uses : wagoid/commitlint-github-action@v6.0.1
@@ -32,12 +32,15 @@ jobs:
3232 yaml-linting :
3333 timeout-minutes : 4
3434 runs-on : ubuntu-latest
35+ concurrency :
36+ cancel-in-progress : true
37+ group : yaml-linting-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
3538 permissions :
3639 contents : read
3740 pull-requests : read
3841 steps :
3942 - name : 📦 Check out the codebase
40- uses : actions/checkout@v4.1.6
43+ uses : actions/checkout@v4.1.7
4144
4245 - name : 🧐 Lint YAML files
4346 uses : ibiqlik/action-yamllint@v3.1.1
5457 group : markdown-linting-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
5558 steps :
5659 - name : 📦 Check out the codebase
57- uses : actions/checkout@v4.1.6
60+ uses : actions/checkout@v4.1.7
5861
5962 - name : 🧐 Lint Markdown files
6063 uses : DavidAnson/markdownlint-cli2-action@v16.0.0
9194 tools : phive
9295
9396 - name : 📦 Check out the codebase
94- uses : actions/checkout@v4.1.6
97+ uses : actions/checkout@v4.1.7
9598
9699 - name : 🛠️ Setup problem matchers
97100 run : |
@@ -155,7 +158,7 @@ jobs:
155158 coverage : none
156159
157160 - name : 📦 Check out the codebase
158- uses : actions/checkout@v4.1.6
161+ uses : actions/checkout@v4.1.7
159162
160163 - name : 🛠️ Setup problem matchers
161164 run : |
0 commit comments