Skip to content

chore: ci security #4

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 22, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions .github/workflows/publish-python.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,12 @@ jobs:
- name: "Checkout"
uses: actions/checkout@v4
with:
submodules: true
submodules: recursive
persist-credentials: false

- name: "Configure Git safe directory"
run: git config --global --add safe.directory /__w/bdkpython/bdkpython

- name: "Install Rust 1.84.1"
uses: actions-rs/toolchain@v1
with:
Expand Down Expand Up @@ -58,7 +61,7 @@ jobs:
- name: "Checkout"
uses: actions/checkout@v4
with:
submodules: true
submodules: recursive
persist-credentials: false

- name: "Install Python"
Expand Down Expand Up @@ -94,7 +97,7 @@ jobs:
- name: "Checkout"
uses: actions/checkout@v4
with:
submodules: true
submodules: recursive
persist-credentials: false

- name: "Install Python"
Expand Down Expand Up @@ -129,7 +132,7 @@ jobs:
- name: "Checkout"
uses: actions/checkout@v4
with:
submodules: true
submodules: recursive
persist-credentials: false

- uses: actions/setup-python@v4
Expand Down
16 changes: 11 additions & 5 deletions .github/workflows/test-python.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,12 @@ jobs:
- name: "Checkout"
uses: actions/checkout@v4
with:
submodules: true
submodules: recursive
persist-credentials: false

- name: "Configure Git safe directory"
run: git config --global --add safe.directory /__w/bdkpython/bdkpython

- name: "Install Rust 1.84.1"
uses: actions-rs/toolchain@v1
with:
Expand Down Expand Up @@ -68,7 +71,7 @@ jobs:
- name: "Checkout"
uses: actions/checkout@v4
with:
submodules: true
submodules: recursive
persist-credentials: false

- name: "Install Python"
Expand Down Expand Up @@ -110,7 +113,7 @@ jobs:
- name: "Checkout"
uses: actions/checkout@v4
with:
submodules: true
submodules: recursive
persist-credentials: false

- uses: actions/setup-python@v4
Expand Down Expand Up @@ -151,7 +154,7 @@ jobs:
- name: "Checkout"
uses: actions/checkout@v4
with:
submodules: true
submodules: recursive
persist-credentials: false

- name: "Install Python"
Expand Down Expand Up @@ -185,9 +188,12 @@ jobs:
- name: "Checkout"
uses: actions/checkout@v4
with:
submodules: true
submodules: recursive
persist-credentials: false

- name: "Configure Git safe directory"
run: git config --global --add safe.directory /__w/bdkpython/bdkpython

- name: "Install Ruff"
run: curl -LsSf https://astral.sh/ruff/install.sh | sh

Expand Down
Loading