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/custom-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
runs-on: ${{ github.event.inputs.os }}
steps:
- name: Checkout python-for-android
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Pull the python-for-android docker image
run: make docker/pull
- name: Build python-for-android docker image
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
docker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: docker/setup-buildx-action@v4
- run: make docker/build
- name: docker login
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout python-for-android
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Set up Python 3.x
uses: actions/setup-python@v6
with:
Expand All @@ -35,7 +35,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout python-for-android
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Set up Java 17
uses: actions/setup-java@v5
with:
Expand All @@ -58,7 +58,7 @@ jobs:
os: [ubuntu-latest, macos-latest]
steps:
- name: Checkout python-for-android
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
Expand Down Expand Up @@ -106,7 +106,7 @@ jobs:
remove-codeql: 'true'
remove-docker-images: 'true'
- name: Checkout python-for-android
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Relocate Docker data directory
run: |
sudo systemctl stop docker
Expand Down Expand Up @@ -163,7 +163,7 @@ jobs:
ANDROID_NDK_HOME: ${HOME}/.android/android-ndk
steps:
- name: Checkout python-for-android
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Set up Python 3.x
uses: actions/setup-python@v6
with:
Expand Down Expand Up @@ -202,7 +202,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Download Artifacts
uses: actions/download-artifact@v8
with:
Expand Down Expand Up @@ -239,7 +239,7 @@ jobs:
remove-codeql: 'true'
remove-docker-images: 'true'
- name: Checkout python-for-android (all-history)
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0
- name: Relocate Docker data directory
Expand Down Expand Up @@ -276,7 +276,7 @@ jobs:
REBUILD_UPDATED_RECIPES_EXTRA_ARGS: --arch=${{ matrix.android_arch }}
steps:
- name: Checkout python-for-android (all-history)
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0
- name: Set up Python 3.x
Expand Down Expand Up @@ -308,7 +308,7 @@ jobs:
documentation:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Requirements
run: |
python -m pip install --upgrade pip
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pypi-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
pypi_release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Set up Python 3.x
uses: actions/setup-python@v6
with:
Expand Down
Loading