Skip to content

Commit fb868ae

Browse files
chore(deps): update actions/checkout action to v5
1 parent bd7533e commit fb868ae

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
lint:
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
17+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
1818
- uses: ./.github/actions/setup
1919
with:
2020
extras: "-E pandas"
@@ -24,23 +24,23 @@ jobs:
2424
build_docs:
2525
runs-on: ubuntu-latest
2626
steps:
27-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
27+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
2828
- uses: ./.github/actions/setup
2929
- name: Build docs
3030
run: cd docs && make html SPHINXOPTS="-W --keep-going"
3131

3232
build_package:
3333
runs-on: ubuntu-latest
3434
steps:
35-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
35+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
3636
- uses: ./.github/actions/setup
3737
- name: Build package
3838
run: poetry build
3939

4040
test_core:
4141
runs-on: ubuntu-latest
4242
steps:
43-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
43+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
4444
- uses: ./.github/actions/setup
4545
- name: Test core
4646
run: pytest tests/tests_unit -n8 --dist loadscope --maxfail 10 -m 'not dsl' --test-deps-only-core
@@ -53,7 +53,7 @@ jobs:
5353
os: [ubuntu-latest, windows-latest]
5454
python-version: ["3.10", "3.11", "3.12", "3.13"]
5555
steps:
56-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
56+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
5757
- uses: ./.github/actions/setup
5858
with:
5959
python_version: ${{ matrix.python-version }}

.github/workflows/cdf_auth.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
PROVIDER: "entra_id"
2525
LOGIN_FLOW: "client_credentials"
2626
steps:
27-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
27+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
2828
- name: Build the CDF Groups
2929
working-directory: scripts/toolkit
3030
run: cdf build --env ${{ matrix.cdf_project }}

.github/workflows/manual-pre-release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: windows-latest
1111
environment: CD
1212
steps:
13-
- uses: actions/checkout@v4
13+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
1414

1515
- uses: ./.github/actions/setup
1616

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: windows-latest
1111
environment: CD
1212
steps:
13-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
13+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
1414
- uses: ./.github/actions/setup
1515
with:
1616
extras: '-E all'

.github/workflows/verify-jupyter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
build_and_test_jupyter_pyodide:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
12+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
1313
- uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5
1414
with:
1515
python-version: '3.10'

.github/workflows/verify-streamlit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
build_and_test_streamlit_pyodide:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
12+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
1313
- uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5
1414
with:
1515
python-version: '3.10'

0 commit comments

Comments
 (0)