Skip to content

Commit 431c958

Browse files
authored
Merge pull request #26 from eniehack/feat/uv-cache
actionsでjson生成する際、uvにcacheを使わせるように
2 parents 2b8e1d8 + 3f4448a commit 431c958

File tree

2 files changed

+21
-21
lines changed

2 files changed

+21
-21
lines changed

.github/workflows/update-geojson.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -17,35 +17,35 @@ jobs:
1717
working-directory: script
1818
runs-on: ubuntu-latest
1919
steps:
20-
- uses: actions/checkout@v4
20+
- uses: actions/checkout@v6
2121

2222
- name: Install uv
23-
uses: astral-sh/setup-uv@v6
23+
uses: astral-sh/setup-uv@v7
2424

2525
- name: install python
2626
working-directory: script
2727
run: uv python install
28-
28+
2929
- name: install dependencies
3030
working-directory: script
3131
run: uv sync --locked
32-
32+
3333
- name: generate data
3434
working-directory: script
3535
run: |
36-
./generate.sh
37-
for f in *.json; do
38-
mv "$f" ../static/
39-
done
36+
./generate.sh
37+
for f in *.json; do
38+
mv "$f" ../static/
39+
done
4040
4141
- name: get current year, month for branch name
4242
id: date
43-
run: echo "date=$(date +'%Y-%m')" >> $GITHUB_OUTPUT
43+
run: echo "date=$(date +'%Y-%m-%d')" >> $GITHUB_OUTPUT
4444

45-
- uses: peter-evans/create-pull-request@v7
45+
- uses: peter-evans/create-pull-request@v8
4646
with:
47-
commit-message: "chore: updated geojson files (${{ steps.date.outputs.date }})"
48-
title: "update ${{ steps.date.outputs.date }}"
49-
branch: "feat/${{ steps.date.outputs.date }}-update"
47+
commit-message: 'chore: updated geojson files (${{ steps.date.outputs.date }})'
48+
title: 'update ${{ steps.date.outputs.date }}'
49+
branch: 'feat/${{ steps.date.outputs.date }}-update'
5050
add-paths: |
51-
static/*.json
51+
static/*.json

src/app.css

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@
1313
color utility to any element that depends on these defaults.
1414
*/
1515
@layer base {
16-
*,
17-
::after,
18-
::before,
19-
::backdrop,
20-
::file-selector-button {
21-
border-color: var(--color-gray-200, currentColor);
22-
}
16+
*,
17+
::after,
18+
::before,
19+
::backdrop,
20+
::file-selector-button {
21+
border-color: var(--color-gray-200, currentColor);
22+
}
2323
}

0 commit comments

Comments
 (0)