Skip to content
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
19 changes: 14 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ jobs:
with:
python-version: "3.x"

- uses: actions/checkout@v5
- uses: actions/checkout@v6
Comment thread
2bndy5 marked this conversation as resolved.
with:
persist-credentials: false

- name: Build wheel
run: pip wheel -w dist --no-deps .
Expand All @@ -36,7 +38,9 @@ jobs:
with:
python-version: "3.x"

- uses: actions/checkout@v5
- uses: actions/checkout@v6
Comment thread
2bndy5 marked this conversation as resolved.
with:
persist-credentials: false

- name: Install pre-commit and deps
run: pip install pre-commit -r requirements.txt
Expand All @@ -59,16 +63,19 @@ jobs:
tr '_' '-'
) >> $GITHUB_OUTPUT

- uses: actions/checkout@v5
- uses: actions/checkout@v6
Comment thread
2bndy5 marked this conversation as resolved.
with:
persist-credentials: false

- name: Set up Python 3.x
uses: actions/setup-python@v6
with:
python-version: "3.11"

- name: Checkout tools repo
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
Comment thread
2bndy5 marked this conversation as resolved.
persist-credentials: false
repository: adafruit/actions-ci-circuitpython-libs
path: actions-ci

Expand All @@ -88,7 +95,9 @@ jobs:
build-docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
Comment thread
2bndy5 marked this conversation as resolved.
with:
persist-credentials: false

- name: Set up Python 3.x
uses: actions/setup-python@v6
Expand Down
9 changes: 6 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,15 @@ jobs:
python-version: "3.x"

- name: Checkout Current Repo
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
Comment thread
2bndy5 marked this conversation as resolved.
persist-credentials: false
fetch-depth: 0

- name: Checkout tools repo
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
Comment thread
2bndy5 marked this conversation as resolved.
persist-credentials: false
repository: adafruit/actions-ci-circuitpython-libs
path: actions-ci

Expand Down Expand Up @@ -60,8 +62,9 @@ jobs:
permissions:
id-token: write
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
Comment thread
2bndy5 marked this conversation as resolved.
persist-credentials: false
fetch-depth: 0

- uses: actions/setup-python@v6
Expand Down