Skip to content

Commit 73b52b8

Browse files
committed
fix(ci): don't persist credentials unless needed
1 parent 2d82a73 commit 73b52b8

4 files changed

Lines changed: 7 additions & 0 deletions

File tree

.github/workflows/check-c-abi.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ jobs:
1212
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
1313
with:
1414
fetch-depth: 0
15+
persist-credentials: false
1516

1617
- name: Set up Python
1718
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5

.github/workflows/publish-rust.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ jobs:
1919
image: "rapidsai/ci-conda:26.06-cuda${{ matrix.cuda_version }}-ubuntu24.04-py3.13"
2020
steps:
2121
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
22+
with:
23+
persist-credentials: false
2224
- name: Check if release build
2325
id: check_release
2426
run: |

.github/workflows/store-c-abi-baseline.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ jobs:
1919
steps:
2020
- name: Checkout repository
2121
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
22+
with:
23+
persist-credentials: false
2224

2325
- name: Download main baseline artifact
2426
uses: dawidd6/action-download-artifact@8a338493df3d275e4a7a63bcff3b8fe97e51a927 # v19

.github/workflows/update-c-abi-baseline.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ jobs:
1818
steps:
1919
- name: Checkout main branch
2020
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
21+
with:
22+
persist-credentials: false
2123

2224
- name: Set up Python
2325
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5

0 commit comments

Comments
 (0)