Skip to content

Commit e4410cf

Browse files
committed
ci: consistently use single quotes
1 parent 3690716 commit e4410cf

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
with:
3232
version: ${{ env.UV_VERSION }}
3333
enable-cache: true
34-
cache-dependency-glob: "uv.lock"
34+
cache-dependency-glob: 'uv.lock'
3535

3636
- name: Install Python
3737
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
@@ -92,7 +92,7 @@ jobs:
9292
with:
9393
version: ${{ env.UV_VERSION }}
9494
enable-cache: true
95-
cache-dependency-glob: "uv.lock"
95+
cache-dependency-glob: 'uv.lock'
9696
cache-suffix: ${{ matrix.python-version }}
9797

9898
- name: Install Python
@@ -134,7 +134,7 @@ jobs:
134134
with:
135135
version: ${{ env.UV_VERSION }}
136136
enable-cache: true
137-
cache-dependency-glob: "uv.lock"
137+
cache-dependency-glob: 'uv.lock'
138138

139139
- name: Install Python
140140
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ jobs:
227227
with:
228228
version: ${{ env.UV_VERSION }}
229229
enable-cache: true
230-
cache-dependency-glob: "uv.lock"
230+
cache-dependency-glob: 'uv.lock'
231231

232232
- name: Install Python
233233
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0

.github/workflows/validate-codecov-config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ name: validate-codecov-config
33
on:
44
pull_request:
55
paths:
6-
- ".github/workflows/validate-codecov-config.yml"
7-
- "codecov.yaml"
6+
- '.github/workflows/validate-codecov-config.yml'
7+
- 'codecov.yaml'
88
push:
99
branches: [main]
1010

.github/workflows/validate-renovate-config.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@ name: validate-renovate-config
33
on:
44
pull_request:
55
paths:
6-
- ".github/workflows/validate-renovate-config.yml"
7-
- ".github/renovate.json5"
6+
- '.github/workflows/validate-renovate-config.yml'
7+
- '.github/renovate.json5'
88
push:
99
branches: [main]
1010

1111
env:
1212
# renovate: datasource=node depName=node versioning=node
13-
NODE_VERSION: "24"
13+
NODE_VERSION: '24'
1414

1515
permissions: {}
1616

0 commit comments

Comments
 (0)