Skip to content

Commit 1f6aee8

Browse files
authored
Merge pull request #78 from ianlewis/repo-template
Sync w/ upstream ianlewis/repo-template
2 parents aa8d5fa + 5b84040 commit 1f6aee8

26 files changed

+2022
-1497
lines changed

.aqua-checksums.json

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -225,6 +225,36 @@
225225
"checksum": "76E9514CFAC18E5677AA04F3A89873C981F16A2F2353BB97372A86CD09B1F5A8",
226226
"algorithm": "sha256"
227227
},
228+
{
229+
"id": "github_release/github.com/rhysd/actionlint/v1.7.8/actionlint_1.7.8_darwin_amd64.tar.gz",
230+
"checksum": "16B85CAF792B34BCC40F7437736C4347680DA0A1B034353A85012DEBBD71A461",
231+
"algorithm": "sha256"
232+
},
233+
{
234+
"id": "github_release/github.com/rhysd/actionlint/v1.7.8/actionlint_1.7.8_darwin_arm64.tar.gz",
235+
"checksum": "FFB1F6C429A51DC9F37AF9D11F96C16BD52F54B713BF7F8BD92F7FCE9FD4284A",
236+
"algorithm": "sha256"
237+
},
238+
{
239+
"id": "github_release/github.com/rhysd/actionlint/v1.7.8/actionlint_1.7.8_linux_amd64.tar.gz",
240+
"checksum": "BE92C2652AB7B6D08425428797CEABEB16E31A781C07BC388456B4E592F3E36A",
241+
"algorithm": "sha256"
242+
},
243+
{
244+
"id": "github_release/github.com/rhysd/actionlint/v1.7.8/actionlint_1.7.8_linux_arm64.tar.gz",
245+
"checksum": "4C65DBB2D59B409CDD75D47FFA8FA32AF8F0EEE573AC510468DC2275C48BF07C",
246+
"algorithm": "sha256"
247+
},
248+
{
249+
"id": "github_release/github.com/rhysd/actionlint/v1.7.8/actionlint_1.7.8_windows_amd64.zip",
250+
"checksum": "8CAE2385EB69B93084EA2E6A4BCE57233FEB56AB16B3087BEA25CBC0ABADB0CC",
251+
"algorithm": "sha256"
252+
},
253+
{
254+
"id": "github_release/github.com/rhysd/actionlint/v1.7.8/actionlint_1.7.8_windows_arm64.zip",
255+
"checksum": "76CBB407E2DE15DF97969AAE51D6FB46AAAE9E73A48DA06B1C3157CB9F2EE766",
256+
"algorithm": "sha256"
257+
},
228258
{
229259
"id": "registries/github_content/github.com/aquaproj/aqua-registry/registry.yaml",
230260
"checksum": "D836ECD0F1FA3B9F2D850BAE72922CA7DDF8F82B98A78C572762ABB70F8020EC87DF4B4D1F3C1F6A3F519FE134676145B5635104C3B8D8B6545163981E99F1FC",
@@ -275,6 +305,11 @@
275305
"checksum": "015FCF0BC87EB881A1895AA9CD75CFC9F0BF7D23363E4B39041E5728D0F3DF80",
276306
"algorithm": "sha256"
277307
},
308+
{
309+
"id": "registries/github_content/github.com/aquaproj/aqua-registry/v4.432.0/registry.yaml",
310+
"checksum": "96CBA2F96234E92A8BEA7A9F4E8D111F725D0AA0C7EDE342CDFAB9119C4176593BB2AB922B3D3FF3A539386BE19D2FA704323C13A11E098BB2B82C270AF60874",
311+
"algorithm": "sha512"
312+
},
278313
{
279314
"id": "registries/github_content/github.com/aquaproj/aqua-registry/v4.426.0/registry.yaml",
280315
"checksum": "28C3C7A64105B96AABB2B25A08FAC6E0C992355059B450879A59B6613A863545",

.aqua.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ checksum:
2323
- all
2424
registries:
2525
- type: standard
26-
ref: v4.426.0 # renovate: depName=aquaproj/aqua-registry
26+
ref: v4.432.0 # renovate: depName=aquaproj/aqua-registry
2727
packages:
28-
- name: rhysd/[email protected].7
28+
- name: rhysd/[email protected].8
2929
- name: koalaman/[email protected]
3030
- name: jqlang/[email protected]
3131
- name: ianlewis/[email protected]

.github/workflows/pull_request.tests.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@ on:
2626
permissions:
2727
contents: read # Needed to check out the repo.
2828

29+
concurrency:
30+
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
31+
cancel-in-progress: true
32+
2933
# NOTE: We use simple job names because these are used in branch rulesets and
3034
# are matched by name. This makes the job names an identifier rather than
3135
# just a human-readable label.

.github/workflows/schedule.issue-reopener.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,10 @@ on:
2828

2929
permissions: {}
3030

31+
concurrency:
32+
group: ${{ github.workflow }}-${{ github.ref }}
33+
cancel-in-progress: true
34+
3135
jobs:
3236
issue-reopener:
3337
name: Reopen TODO issues

.github/workflows/schedule.scorecard.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,10 @@ on:
2525
# Declare default permissions as read only.
2626
permissions: {}
2727

28+
concurrency:
29+
group: ${{ github.workflow }}-${{ github.ref }}
30+
cancel-in-progress: true
31+
2832
jobs:
2933
analysis:
3034
name: Scorecards analysis
@@ -64,15 +68,15 @@ jobs:
6468
# Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF
6569
# format to the repository Actions tab.
6670
- name: "Upload artifact"
67-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
71+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
6872
with:
6973
name: SARIF file
7074
path: results.sarif
7175
retention-days: 5
7276

7377
# Upload the results to GitHub's code scanning dashboard.
7478
- name: "Upload to code-scanning"
75-
uses: github/codeql-action/upload-sarif@e296a935590eb16afc0c0108289f68c87e2a89a5 # v4.30.7
79+
uses: github/codeql-action/upload-sarif@0499de31b99561a6d14a36a5f662c2a54f91beee # v4.31.2
7680
# NOTE: Uploading SARIF requires GitHub Enterprise and GitHub Advanced Security license for private repositories.
7781
# TODO: Remove the next line for private repositories with GitHub Advanced Security.
7882
if: github.event.repository.private == false

.github/workflows/schedule.stale.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@ on:
1919

2020
permissions: {}
2121

22+
concurrency:
23+
group: ${{ github.workflow }}-${{ github.ref }}
24+
cancel-in-progress: true
25+
2226
jobs:
2327
stale:
2428
name: Close stale issues and PRs

.github/workflows/workflow_call.actionlint.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@ on:
2020
permissions:
2121
contents: read
2222

23+
concurrency:
24+
group: actionlint-${{ github.event.pull_request.number || github.ref }}
25+
cancel-in-progress: true
26+
2327
jobs:
2428
actionlint:
2529
name: actionlint

.github/workflows/workflow_call.checkmake.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@ on:
2020
permissions:
2121
contents: read
2222

23+
concurrency:
24+
group: checkmake-${{ github.event.pull_request.number || github.ref }}
25+
cancel-in-progress: true
26+
2327
jobs:
2428
checkmake:
2529
name: checkmake

.github/workflows/workflow_call.commitlint.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,10 @@ on:
2929
permissions:
3030
contents: read
3131

32+
concurrency:
33+
group: commitlint-${{ github.event.pull_request.number || github.ref }}
34+
cancel-in-progress: true
35+
3236
jobs:
3337
commitlint:
3438
name: commitlint
@@ -39,7 +43,7 @@ jobs:
3943
persist-credentials: false
4044
fetch-depth: 0 # Fetch all history for all branches and tags
4145

42-
- uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
46+
- uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
4347
with:
4448
node-version-file: ".node-version"
4549

.github/workflows/workflow_call.eslint.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@ on:
2020
permissions:
2121
contents: read
2222

23+
concurrency:
24+
group: eslint-${{ github.event.pull_request.number || github.ref }}
25+
cancel-in-progress: true
26+
2327
jobs:
2428
eslint:
2529
name: eslint

0 commit comments

Comments
 (0)