Skip to content

Commit 319be18

Browse files
chore: fix odds workflows action versions
Co-authored-by: Cursor <cursoragent@cursor.com>
1 parent 1b00d5f commit 319be18

7 files changed

Lines changed: 25 additions & 13 deletions

File tree

.github/workflows/convetional-commit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@ jobs:
2121
pull-requests: read
2222
steps:
2323
- if: github.event_name != 'merge_group'
24-
uses: amannn/action-semantic-pull-request@v6
24+
uses: amannn/action-semantic-pull-request@v7
2525
env:
2626
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/odds-collect.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,10 @@ jobs:
2727
- name: Check out repository
2828
uses: actions/checkout@v6
2929

30-
- name: Set up uv
31-
uses: astral-sh/setup-uv@v7
30+
- name: Install uv
31+
run: |
32+
curl -LsSf https://astral.sh/uv/install.sh | sh
33+
echo "$HOME/.local/bin" >> "$GITHUB_PATH"
3234
3335
- name: Init schema (idempotent)
3436
env:

.github/workflows/odds-freshness-guard.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,10 @@ jobs:
1616
- name: Check out repository
1717
uses: actions/checkout@v6
1818

19-
- name: Set up uv
20-
uses: astral-sh/setup-uv@v7
19+
- name: Install uv
20+
run: |
21+
curl -LsSf https://astral.sh/uv/install.sh | sh
22+
echo "$HOME/.local/bin" >> "$GITHUB_PATH"
2123
2224
- name: Init schema (idempotent)
2325
env:

.github/workflows/odds-kenpom.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,10 @@ jobs:
1414
- name: Check out repository
1515
uses: actions/checkout@v6
1616

17-
- name: Set up uv
18-
uses: astral-sh/setup-uv@v7
17+
- name: Install uv
18+
run: |
19+
curl -LsSf https://astral.sh/uv/install.sh | sh
20+
echo "$HOME/.local/bin" >> "$GITHUB_PATH"
1921
2022
- name: Init schema (idempotent)
2123
env:

.github/workflows/odds-predict.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,10 @@ jobs:
1919
- name: Check out repository
2020
uses: actions/checkout@v6
2121

22-
- name: Set up uv
23-
uses: astral-sh/setup-uv@v7
22+
- name: Install uv
23+
run: |
24+
curl -LsSf https://astral.sh/uv/install.sh | sh
25+
echo "$HOME/.local/bin" >> "$GITHUB_PATH"
2426
2527
- name: Init schema (idempotent)
2628
env:

.github/workflows/odds-scores.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,10 @@ jobs:
2323
- name: Check out repository
2424
uses: actions/checkout@v6
2525

26-
- name: Set up uv
27-
uses: astral-sh/setup-uv@v7
26+
- name: Install uv
27+
run: |
28+
curl -LsSf https://astral.sh/uv/install.sh | sh
29+
echo "$HOME/.local/bin" >> "$GITHUB_PATH"
2830
2931
- name: Init schema (idempotent)
3032
env:

.github/workflows/odds-train.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,10 @@ jobs:
1414
- name: Check out repository
1515
uses: actions/checkout@v6
1616

17-
- name: Set up uv
18-
uses: astral-sh/setup-uv@v7
17+
- name: Install uv
18+
run: |
19+
curl -LsSf https://astral.sh/uv/install.sh | sh
20+
echo "$HOME/.local/bin" >> "$GITHUB_PATH"
1921
2022
- name: Init schema (idempotent)
2123
env:

0 commit comments

Comments
 (0)