Skip to content

Commit 574e75e

Browse files
authored
build(deps): consolidate open Dependabot updates (#707)
1 parent 746724f commit 574e75e

10 files changed

Lines changed: 55 additions & 55 deletions

File tree

.github/workflows/checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
egress-policy: audit
2424

2525
- name: Check out code
26-
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
26+
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
2727
with:
2828
fetch-depth: 2 # Recommended by turbo team
2929

.github/workflows/codeql.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
egress-policy: audit
3030

3131
- name: Check out code
32-
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
32+
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
3333
with:
3434
fetch-depth: 2 # Recommended by turbo team
3535

@@ -39,13 +39,13 @@ jobs:
3939
skip-compact: "true"
4040

4141
- name: Initialize CodeQL
42-
uses: github/codeql-action/init@54f647b7e1bb85c95cddabcd46b0c578ec92bc1a # v4.36.3
42+
uses: github/codeql-action/init@e0647621c2984b5ed2f768cb892365bf2a616ad1 # v4.37.2
4343
with:
4444
languages: ${{ matrix.language }}
4545
# We can add custom queries later when needed
4646
# queries: security-extended
4747

4848
- name: Perform CodeQL Analysis
49-
uses: github/codeql-action/analyze@54f647b7e1bb85c95cddabcd46b0c578ec92bc1a # v4.36.3
49+
uses: github/codeql-action/analyze@e0647621c2984b5ed2f768cb892365bf2a616ad1 # v4.37.2
5050
with:
5151
category: "/language:${{ matrix.language }}"

.github/workflows/create-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
permission-contents: write
4545

4646
- name: Checkout
47-
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
47+
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
4848
with:
4949
# No git writes here (release is cut via gh/app token), so don't persist creds.
5050
persist-credentials: false

.github/workflows/prepare-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
permission-pull-requests: write
4444

4545
- name: Checkout repository
46-
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
46+
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
4747
with:
4848
token: ${{ steps.gh-app-token.outputs.token }}
4949
# Commit/PR go through the app token via API, not git creds on disk.
@@ -53,7 +53,7 @@ jobs:
5353
run: corepack enable
5454

5555
- name: Setup Node.js
56-
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
56+
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
5757
with:
5858
node-version-file: ".nvmrc"
5959
cache: "yarn"

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@ jobs:
2626
egress-policy: audit
2727

2828
- name: Checkout
29-
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
29+
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
3030
with:
3131
# No git writes here (publish uses npm OIDC, not git creds), so don't persist creds.
3232
persist-credentials: false
3333

3434
- name: Setup Node.js
35-
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
35+
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
3636
with:
3737
node-version-file: ".nvmrc"
3838
registry-url: https://registry.npmjs.org

.github/workflows/scorecard.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
egress-policy: audit
3636

3737
- name: Checkout code
38-
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
38+
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
3939
with:
4040
persist-credentials: false
4141

@@ -56,6 +56,6 @@ jobs:
5656
retention-days: 5
5757

5858
- name: Upload SARIF to GitHub Code Scanning
59-
uses: github/codeql-action/upload-sarif@54f647b7e1bb85c95cddabcd46b0c578ec92bc1a # v4.36.3
59+
uses: github/codeql-action/upload-sarif@e0647621c2984b5ed2f768cb892365bf2a616ad1 # v4.37.2
6060
with:
6161
sarif_file: results.sarif

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
egress-policy: audit
3232

3333
- name: Check out code
34-
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
34+
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
3535
with:
3636
fetch-depth: 2 # Recommended by turbo team
3737

biome.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "https://biomejs.dev/schemas/2.5.4/schema.json",
2+
"$schema": "https://biomejs.dev/schemas/2.5.5/schema.json",
33
"vcs": {
44
"enabled": true,
55
"clientKind": "git",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
"@midnight-ntwrk/compact-runtime": "0.16.0"
5050
},
5151
"devDependencies": {
52-
"@biomejs/biome": "^2.5.2",
52+
"@biomejs/biome": "^2.5.5",
5353
"@midnight-ntwrk/ledger-v8": "8.1.0",
5454
"@midnight-ntwrk/zswap": "^4.0.0",
5555
"@types/node": "26.1.1",

yarn.lock

Lines changed: 41 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -85,18 +85,18 @@ __metadata:
8585
languageName: node
8686
linkType: hard
8787

88-
"@biomejs/biome@npm:^2.5.2":
89-
version: 2.5.4
90-
resolution: "@biomejs/biome@npm:2.5.4"
91-
dependencies:
92-
"@biomejs/cli-darwin-arm64": "npm:2.5.4"
93-
"@biomejs/cli-darwin-x64": "npm:2.5.4"
94-
"@biomejs/cli-linux-arm64": "npm:2.5.4"
95-
"@biomejs/cli-linux-arm64-musl": "npm:2.5.4"
96-
"@biomejs/cli-linux-x64": "npm:2.5.4"
97-
"@biomejs/cli-linux-x64-musl": "npm:2.5.4"
98-
"@biomejs/cli-win32-arm64": "npm:2.5.4"
99-
"@biomejs/cli-win32-x64": "npm:2.5.4"
88+
"@biomejs/biome@npm:^2.5.5":
89+
version: 2.5.5
90+
resolution: "@biomejs/biome@npm:2.5.5"
91+
dependencies:
92+
"@biomejs/cli-darwin-arm64": "npm:2.5.5"
93+
"@biomejs/cli-darwin-x64": "npm:2.5.5"
94+
"@biomejs/cli-linux-arm64": "npm:2.5.5"
95+
"@biomejs/cli-linux-arm64-musl": "npm:2.5.5"
96+
"@biomejs/cli-linux-x64": "npm:2.5.5"
97+
"@biomejs/cli-linux-x64-musl": "npm:2.5.5"
98+
"@biomejs/cli-win32-arm64": "npm:2.5.5"
99+
"@biomejs/cli-win32-x64": "npm:2.5.5"
100100
dependenciesMeta:
101101
"@biomejs/cli-darwin-arm64":
102102
optional: true
@@ -116,62 +116,62 @@ __metadata:
116116
optional: true
117117
bin:
118118
biome: bin/biome
119-
checksum: 10/df9f4c2537d98b93606cefa8591612b8c5287646c5fd01540433ac395a7c2c7eab4941c43b0564485e1b0373e0e2945faac431cb6216c14c409c9adf1928db54
119+
checksum: 10/5c3768893b2b77b0d6fed5a3e92394d2fb9520fc4b1c51143b4ed2789230f3fc648aba8cc152debe58a04c4103bf58515a19de2be721bb433879d3a1e9114049
120120
languageName: node
121121
linkType: hard
122122

123-
"@biomejs/cli-darwin-arm64@npm:2.5.4":
124-
version: 2.5.4
125-
resolution: "@biomejs/cli-darwin-arm64@npm:2.5.4"
123+
"@biomejs/cli-darwin-arm64@npm:2.5.5":
124+
version: 2.5.5
125+
resolution: "@biomejs/cli-darwin-arm64@npm:2.5.5"
126126
conditions: os=darwin & cpu=arm64
127127
languageName: node
128128
linkType: hard
129129

130-
"@biomejs/cli-darwin-x64@npm:2.5.4":
131-
version: 2.5.4
132-
resolution: "@biomejs/cli-darwin-x64@npm:2.5.4"
130+
"@biomejs/cli-darwin-x64@npm:2.5.5":
131+
version: 2.5.5
132+
resolution: "@biomejs/cli-darwin-x64@npm:2.5.5"
133133
conditions: os=darwin & cpu=x64
134134
languageName: node
135135
linkType: hard
136136

137-
"@biomejs/cli-linux-arm64-musl@npm:2.5.4":
138-
version: 2.5.4
139-
resolution: "@biomejs/cli-linux-arm64-musl@npm:2.5.4"
137+
"@biomejs/cli-linux-arm64-musl@npm:2.5.5":
138+
version: 2.5.5
139+
resolution: "@biomejs/cli-linux-arm64-musl@npm:2.5.5"
140140
conditions: os=linux & cpu=arm64 & libc=musl
141141
languageName: node
142142
linkType: hard
143143

144-
"@biomejs/cli-linux-arm64@npm:2.5.4":
145-
version: 2.5.4
146-
resolution: "@biomejs/cli-linux-arm64@npm:2.5.4"
144+
"@biomejs/cli-linux-arm64@npm:2.5.5":
145+
version: 2.5.5
146+
resolution: "@biomejs/cli-linux-arm64@npm:2.5.5"
147147
conditions: os=linux & cpu=arm64 & libc=glibc
148148
languageName: node
149149
linkType: hard
150150

151-
"@biomejs/cli-linux-x64-musl@npm:2.5.4":
152-
version: 2.5.4
153-
resolution: "@biomejs/cli-linux-x64-musl@npm:2.5.4"
151+
"@biomejs/cli-linux-x64-musl@npm:2.5.5":
152+
version: 2.5.5
153+
resolution: "@biomejs/cli-linux-x64-musl@npm:2.5.5"
154154
conditions: os=linux & cpu=x64 & libc=musl
155155
languageName: node
156156
linkType: hard
157157

158-
"@biomejs/cli-linux-x64@npm:2.5.4":
159-
version: 2.5.4
160-
resolution: "@biomejs/cli-linux-x64@npm:2.5.4"
158+
"@biomejs/cli-linux-x64@npm:2.5.5":
159+
version: 2.5.5
160+
resolution: "@biomejs/cli-linux-x64@npm:2.5.5"
161161
conditions: os=linux & cpu=x64 & libc=glibc
162162
languageName: node
163163
linkType: hard
164164

165-
"@biomejs/cli-win32-arm64@npm:2.5.4":
166-
version: 2.5.4
167-
resolution: "@biomejs/cli-win32-arm64@npm:2.5.4"
165+
"@biomejs/cli-win32-arm64@npm:2.5.5":
166+
version: 2.5.5
167+
resolution: "@biomejs/cli-win32-arm64@npm:2.5.5"
168168
conditions: os=win32 & cpu=arm64
169169
languageName: node
170170
linkType: hard
171171

172-
"@biomejs/cli-win32-x64@npm:2.5.4":
173-
version: 2.5.4
174-
resolution: "@biomejs/cli-win32-x64@npm:2.5.4"
172+
"@biomejs/cli-win32-x64@npm:2.5.5":
173+
version: 2.5.5
174+
resolution: "@biomejs/cli-win32-x64@npm:2.5.5"
175175
conditions: os=win32 & cpu=x64
176176
languageName: node
177177
linkType: hard
@@ -2474,11 +2474,11 @@ __metadata:
24742474
linkType: hard
24752475

24762476
"brace-expansion@npm:^5.0.2":
2477-
version: 5.0.6
2478-
resolution: "brace-expansion@npm:5.0.6"
2477+
version: 5.0.7
2478+
resolution: "brace-expansion@npm:5.0.7"
24792479
dependencies:
24802480
balanced-match: "npm:^4.0.2"
2481-
checksum: 10/a7acf120fefa79e9d7c9c92898114f57c07596a3920197f3c5917e6a628b04220a5f7f9618c30bdd973a6576a32113b99f9c3f1c8245ccc399dd2a9a718d81d8
2481+
checksum: 10/98c12de33fa53ab07b2b5179f6740045508c61c4319638faf47a0d72615db80058f66c0d1cb74dc8ed591bbf507c068027e80cfb86a2f467bfd330574e13ed7b
24822482
languageName: node
24832483
linkType: hard
24842484

@@ -4207,7 +4207,7 @@ __metadata:
42074207
version: 0.0.0-use.local
42084208
resolution: "openzeppelin-compact@workspace:."
42094209
dependencies:
4210-
"@biomejs/biome": "npm:^2.5.2"
4210+
"@biomejs/biome": "npm:^2.5.5"
42114211
"@midnight-ntwrk/compact-runtime": "npm:0.16.0"
42124212
"@midnight-ntwrk/ledger-v8": "npm:8.1.0"
42134213
"@midnight-ntwrk/zswap": "npm:^4.0.0"

0 commit comments

Comments
 (0)