Skip to content

Commit 73439f2

Browse files
committed
explicit checkouts
1 parent 6de2656 commit 73439f2

File tree

3 files changed

+15
-0
lines changed

3 files changed

+15
-0
lines changed

.github/workflows/ci.yml

+3
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ jobs:
1515

1616
# Steps represent a sequence of tasks that will be executed as part of the job
1717
steps:
18+
- name: Checkout [${{ github.repository }}]
19+
uses: actions/checkout@v4
20+
1821
- uses: cvxgrp/.github/actions/uv/test@main
1922
with:
2023
python-version: ${{ matrix.python-version }}

.github/workflows/pre-commit.yml

+6
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ jobs:
1515
test:
1616
runs-on: ubuntu-latest
1717
steps:
18+
- name: Checkout [${{ github.repository }}]
19+
uses: actions/checkout@v4
20+
1821
- uses: cvxgrp/.github/actions/uv/coverage@main
1922

2023
- name: Coveralls GitHub Action
@@ -26,4 +29,7 @@ jobs:
2629
deptry:
2730
runs-on: ubuntu-latest
2831
steps:
32+
- name: Checkout [${{ github.repository }}]
33+
uses: actions/checkout@v4
34+
2935
- uses: cvxgrp/.github/actions/uv/deptry@main

.github/workflows/release.yml

+6
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ jobs:
88
build:
99
runs-on: ubuntu-latest
1010
steps:
11+
- name: Checkout [${{ github.repository }}]
12+
uses: actions/checkout@v4
13+
1114
- uses: cvxgrp/.github/actions/uv/build@main
1215

1316
deploy:
@@ -20,4 +23,7 @@ jobs:
2023
id-token: write
2124

2225
steps:
26+
- name: Checkout [${{ github.repository }}]
27+
uses: actions/checkout@v4
28+
2329
- uses: cvxgrp/.github/actions/publish@main

0 commit comments

Comments
 (0)