Skip to content

Commit b6e162a

Browse files
committed
fix up broken action - thanks claude that doesnt exist
1 parent c8ef410 commit b6e162a

2 files changed

Lines changed: 9 additions & 3 deletions

File tree

.github/workflows/lint-workflows.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,15 @@ jobs:
1313
name: actionlint
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@v6
1717
- name: Run actionlint
18-
uses: rhysd/actionlint@v1
18+
- name: Download actionlint
19+
id: get_actionlint
20+
run: bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/main/scripts/download-actionlint.bash)
21+
shell: bash
22+
- name: Check workflow files
23+
run: ${{ steps.get_actionlint.outputs.executable }} -color
24+
shell: bash
1925

2026
yamllint:
2127
name: yamllint

.yamllint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
extends: default
22
rules:
33
line-length:
4-
max: 120
4+
max: 200
55
truthy:
66
allowed-values: ['true', 'false', 'on', 'off']

0 commit comments

Comments
 (0)