Skip to content

Commit 94bd2e5

Browse files
committed
CI, minor: remove junie workflow, use persist-credentials: false on checkout action
1 parent 1e6345c commit 94bd2e5

6 files changed

Lines changed: 14 additions & 23 deletions

File tree

.github/workflows/codespell.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ jobs:
2020
steps:
2121
- name: Checkout
2222
uses: actions/checkout@v4
23+
with:
24+
persist-credentials: false
2325
- name: Annotate locations with typos
2426
uses: codespell-project/codespell-problem-matcher@v1
2527
- name: Codespell

.github/workflows/docker.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ jobs:
2020
steps:
2121
- name: Checkout repository
2222
uses: actions/checkout@v4
23+
with:
24+
persist-credentials: false
2325

2426
- name: Set up Docker Buildx
2527
uses: docker/setup-buildx-action@v3

.github/workflows/docs.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ jobs:
2020
steps:
2121
- name: Checkout
2222
uses: actions/checkout@v4
23+
with:
24+
persist-credentials: false
2325

2426
- name: Set up Python
2527
uses: actions/setup-python@v5

.github/workflows/junie.yml

Lines changed: 0 additions & 21 deletions
This file was deleted.

.github/workflows/publish.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: Checkout code
18-
uses: actions/checkout@v2
18+
uses: actions/checkout@v4
19+
with:
20+
persist-credentials: false
1921
- name: Create Release
2022
id: create_release
2123
uses: actions/create-release@v1
@@ -39,6 +41,8 @@ jobs:
3941
steps:
4042
- name: Checkout code
4143
uses: actions/checkout@v4
44+
with:
45+
persist-credentials: false
4246

4347
- name: Install the latest version of uv
4448
uses: astral-sh/setup-uv@v6

.github/workflows/pytest.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@ jobs:
2020
os: [ubuntu-latest, windows-latest, macos-latest]
2121
python-version: ["3.11"]
2222
steps:
23-
- uses: actions/checkout@v3
23+
- uses: actions/checkout@v4
24+
with:
25+
persist-credentials: false
2426
- name: Free disk space
2527
if: runner.os == 'Linux'
2628
run: |

0 commit comments

Comments
 (0)