Skip to content
This repository was archived by the owner on Jun 11, 2025. It is now read-only.

Commit bfb5706

Browse files
committed
ci: add actionlint and action version check
1 parent cfb1311 commit bfb5706

File tree

4 files changed

+26
-4
lines changed

4 files changed

+26
-4
lines changed

.github/actionlint.yaml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Configuration related to self-hosted runner.
2+
self-hosted-runner:
3+
# Labels of self-hosted runner in array of strings.
4+
labels:
5+
- large_ubuntu_16
6+
- large_ubuntu_32
7+
- large_windows_16_latest
8+
- large_ubuntu_16_arm
9+
- large_ubuntu_16-22.04
10+
- large_ubuntu_64-22.04
11+
- gpu_ubuntu-22.04
12+
- aws-mac2-metal
13+
- office-m1-mac-mini
14+
- m1mac
15+
- 4090-desktop
16+
- aws-mac1-metal

.github/workflows/linkchecker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
markdown-link-check:
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/checkout@master
18+
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
1919
- uses: gaurav-nelson/github-action-markdown-link-check@d53a906aa6b22b8979d33bc86170567e619495ec # v1.0.15
2020
with:
2121
use-quiet-mode: "yes"

.github/workflows/commitlint.yml renamed to .github/workflows/lint.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,21 @@
1-
name: Run commitlint on PR
1+
name: Run lint on PR
22

33
on:
44
pull_request:
55

66
jobs:
7-
commitlint:
7+
lint:
88
runs-on: ubuntu-latest
99
steps:
1010
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
1111
with:
1212
fetch-depth: 0
13+
- name: actionlint
14+
uses: raven-actions/actionlint@01fce4f43a270a612932cb1c64d40505a029f821 # v2.0.0
15+
16+
- name: Ensure SHA pinned actions
17+
uses: zgosalvez/github-actions-ensure-sha-pinned-actions@64418826697dcd77c93a8e4a1f7601a1942e57b5 # v3.0.18
18+
1319
- name: Setup Node
1420
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
1521
with:

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Checkout
1616
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
1717
- name: Install Foundry
18-
uses: foundry-rs/foundry-toolchain@v1
18+
uses: foundry-rs/foundry-toolchain@de808b1eea699e761c404bda44ba8f21aba30b2c # v1.3.1
1919
with:
2020
version: stable
2121
- name: Use Node.js ${{ matrix.node-version }}

0 commit comments

Comments
 (0)