Skip to content

Commit c0c712e

Browse files
committed
chore: update dependencies
Newer actions, to see if it fixes CI failures: ``` Unable to find image 'ghcr.io/jidicula/clang-format:18' locally 18: Pulling from jidicula/clang-format docker: failed to copy: httpReadSeeker: failed open: content at https://ghcr.io/v2/jidicula/clang-format/manifests/sha256:0b7c8536f3bd6c87bab8ac37d3167b6514c08250c4f50ea47f5564e7a91056c2 not found: not found ``` - https://github.com/wincent/command-t/actions/runs/22071451790/job/63840905682 Updated dprint config with: ``` npx dprint@0.51.1 config update ```
1 parent 3c6d19f commit c0c712e

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
lines changed

.dprint.jsonc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"includes": ["**/*.md", "**/*.jsonc"],
66
"excludes": [],
77
"plugins": [
8-
"https://plugins.dprint.dev/markdown-0.18.0.wasm",
9-
"https://plugins.dprint.dev/json-0.20.0.wasm",
8+
"https://plugins.dprint.dev/markdown-0.21.1.wasm",
9+
"https://plugins.dprint.dev/json-0.21.1.wasm",
1010
],
1111
}

.github/workflows/dprint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-22.04
1414
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
1515
steps:
16-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
16+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
1717
- uses: dprint/check@9cb3a2b17a8e606d37aae341e49df3654933fc23 # v2.3
1818
with:
19-
dprint-version: 0.50.0
19+
dprint-version: 0.51.1

.github/workflows/lua.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,23 +13,23 @@ jobs:
1313
runs-on: ubuntu-22.04
1414
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
1515
steps:
16-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
17-
- uses: JohnnyMorganz/stylua-action@b6661824b86c9c33121bed87a778b660ba90cf77 # v4.0.0
16+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
17+
- uses: JohnnyMorganz/stylua-action@479972f01e665acfcba96ada452c36608bdbbb5e # v4.1.0
1818
with:
1919
token: ${{ secrets.GITHUB_TOKEN }}
2020
args: --check .
2121
version: "0.20.0"
22-
- uses: jidicula/clang-format-action@d05cecd4a1a5b7e64c22f5a468456135a43f13f6 # v4.14.0
22+
- uses: jidicula/clang-format-action@6cd220de46c89139a0365edae93eee8eb30ca8fe # v4.16.0
2323
with:
24-
clang-format-version: "18"
24+
clang-format-version: "21"
2525
check-path: lua
2626

2727
test:
2828
runs-on: ubuntu-22.04
2929
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
3030
steps:
31-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
32-
- uses: leafo/gh-actions-lua@8aace3457a2fcf3f3c4e9007ecc6b869ff6d74d6 # v11
31+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
32+
- uses: leafo/gh-actions-lua@8c9e175e7a3d77e21f809eefbee34a19b858641b # v12.0.0
3333
with:
3434
luaVersion: luajit-openresty
3535

.github/workflows/spdx.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ jobs:
1313
runs-on: ubuntu-22.04
1414
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
1515
steps:
16-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
16+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
1717
- name: Run check-spdx
1818
run: bin/check-spdx

bin/check-format

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ EXIT=0
1212

1313
stylua --check . || EXIT=1
1414

15-
npx -y dprint@0.50.0 check "**/*.md" "**/*.jsonc" || EXIT=1
15+
npx -y dprint@0.51.1 check "**/*.md" "**/*.jsonc" || EXIT=1
1616

1717
set -o pipefail
1818

bin/format

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ cd "$REPO_ROOT"
1212

1313
stylua .
1414

15-
npx -y dprint@0.50.0 fmt "**/*.md" "**/*.jsonc"
15+
npx -y dprint@0.51.1 fmt "**/*.md" "**/*.jsonc"
1616

1717
# -i = inplace edit
1818
find . -iname '*.[ch]' | xargs clang-format -i

0 commit comments

Comments
 (0)