Skip to content
Open
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
2 changes: 1 addition & 1 deletion .github/workflows/add-issue-header.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
issues: write
timeout-minutes: 5
steps:
- uses: actions/github-script@v8
- uses: actions/github-script@v9
with:
# language=JavaScript
script: |
Expand Down
32 changes: 16 additions & 16 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ jobs:
steps:
# ── 1. Source ───────────────────────────────────────────────────────────
- name: "Checkout (branch: master)"
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
ref: master
fetch-depth: 1
Expand All @@ -157,7 +157,7 @@ jobs:
# Cache downloaded dep tarballs (not the built artefacts — those are arch-
# specific). Key includes the dep versions from build.sh to auto-invalidate.
- name: "Cache downloaded dep sources"
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ${{ env.BUILD_ROOT }}/deps
key: |
Expand Down Expand Up @@ -230,7 +230,7 @@ jobs:

# ── 6. Upload .deb ──────────────────────────────────────────────────────
- name: "Upload .deb artefact"
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
if: success()
with:
name: "python_${{ env.PYTHON_VERSION }}_${{ matrix.arch }}_api${{ matrix.api }}-linux"
Expand All @@ -240,7 +240,7 @@ jobs:

# ── 7. Upload install tree on failure (for debugging) ──────────────────
- name: "Upload install tree (on failure)"
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
if: failure()
with:
name: "debug-install-${{ matrix.arch }}-api${{ matrix.api }}-linux"
Expand All @@ -249,7 +249,7 @@ jobs:

# ── 8. Upload build logs on failure ─────────────────────────────────────
- name: "Upload build logs (on failure)"
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
if: failure()
with:
name: "debug-logs-${{ matrix.arch }}-api${{ matrix.api }}-linux"
Expand All @@ -273,14 +273,14 @@ jobs:

steps:
- name: "Checkout (branch: master)"
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
ref: master
fetch-depth: 1
persist-credentials: false

- name: "Cache downloaded dep sources"
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ${{ env.BUILD_ROOT }}/deps
key: |
Expand Down Expand Up @@ -333,15 +333,15 @@ jobs:

# macOS does not produce a .deb — upload the install tree instead
- name: "Upload install tree (macOS)"
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
if: success()
with:
name: "python_${{ env.PYTHON_VERSION }}_${{ matrix.arch }}_api${{ matrix.api }}-macos"
path: "${{ env.INSTALL_ROOT }}/"
retention-days: 14

- name: "Upload install tree (on failure)"
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
if: failure()
with:
name: "debug-install-${{ matrix.arch }}-api${{ matrix.api }}-macos"
Expand All @@ -368,7 +368,7 @@ jobs:

steps:
- name: "Checkout (branch: master)"
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
ref: master
fetch-depth: 1
Expand Down Expand Up @@ -421,15 +421,15 @@ jobs:
bash bee/build.sh

- name: "Upload install tree (Windows)"
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
if: success()
with:
name: "python_${{ env.PYTHON_VERSION }}_${{ matrix.arch }}_api${{ matrix.api }}-windows"
path: "${{ env.INSTALL_ROOT }}/"
retention-days: 14

- name: "Upload install tree (on failure)"
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
if: failure()
with:
name: "debug-install-${{ matrix.arch }}-api${{ matrix.api }}-windows"
Expand Down Expand Up @@ -459,7 +459,7 @@ jobs:

steps:
- name: "Download .deb artefact"
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: "python_${{ env.PYTHON_VERSION }}_${{ matrix.arch }}_api${{ matrix.api }}-linux"
path: debs/
Expand Down Expand Up @@ -561,14 +561,14 @@ jobs:

steps:
- name: "Checkout (branch: master)"
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
ref: master
fetch-depth: 1
persist-credentials: false

- name: "Download all .deb artefacts"
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
# Match all Linux .deb artefact names
pattern: "python_*-linux"
Expand All @@ -581,7 +581,7 @@ jobs:
ls -lh release-debs/

- name: "Create GitHub Release and upload .deb files"
uses: softprops/action-gh-release@v2
uses: softprops/action-gh-release@v3
with:
tag_name: "${{ github.ref_name }}"
name: "Python ${{ env.PYTHON_VERSION }} for Android — ${{ github.ref_name }}"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ jobs:
- uses: actions/checkout@v6
with:
persist-credentials: false
- uses: j178/prek-action@v1
- uses: j178/prek-action@v2
2 changes: 1 addition & 1 deletion .github/workflows/new-bugs-announce-notifier.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
node-version: 20
- run: npm install mailgun.js form-data
- name: Send notification
uses: actions/github-script@v8
uses: actions/github-script@v9
env:
MAILGUN_API_KEY: ${{ secrets.MAILGUN_PYTHON_ORG_MAILGUN_KEY }}
with:
Expand Down
Loading