Skip to content

Commit ac9005e

Browse files
Fix cron workflow by adding uv setup
- Add astral-sh/setup-uv@v7 step (fixes make pre-build failure) - Update runner to blacksmith-2vcpu-ubuntu-2404 - Bump actions/checkout to v6 - Bump actions/setup-python to v6
1 parent 92f2157 commit ac9005e

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/cron.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,19 @@ on:
77

88
jobs:
99
deploy:
10-
runs-on: ubuntu-latest
10+
runs-on: blacksmith-2vcpu-ubuntu-2404
1111
steps:
1212
- name: Checkout repo
13-
uses: actions/checkout@v4
13+
uses: actions/checkout@v6
1414

1515
- name: Set up Python 3.12
16-
uses: actions/setup-python@v5
16+
uses: actions/setup-python@v6
1717
with:
1818
python-version: '3.12'
1919

20+
- name: Install uv
21+
uses: astral-sh/setup-uv@v7
22+
2023
- name: Set up bun
2124
uses: oven-sh/setup-bun@v1
2225

0 commit comments

Comments
 (0)