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
16 changes: 8 additions & 8 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:

steps:
- name: Checkout ${{ github.repository }}
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Get build information from build.toml
id: info
run: |
Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:

steps:
- name: Checkout ${{ github.repository }}
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Cache bzip2
id: cache
uses: actions/cache@v4
Expand Down Expand Up @@ -109,7 +109,7 @@ jobs:

steps:
- name: Checkout ${{ github.repository }}
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Cache libffi
id: cache
uses: actions/cache@v4
Expand Down Expand Up @@ -176,7 +176,7 @@ jobs:

steps:
- name: Checkout ${{ github.repository }}
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Cache XZ Utils
id: cache
uses: actions/cache@v4
Expand Down Expand Up @@ -242,7 +242,7 @@ jobs:

steps:
- name: Checkout ${{ github.repository }}
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }}
id: py
uses: actions/setup-python@v5
Expand Down Expand Up @@ -306,7 +306,7 @@ jobs:

steps:
- name: Checkout ${{ github.repository }}
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Download artifacts
uses: actions/download-artifact@v4
with:
Expand Down Expand Up @@ -338,7 +338,7 @@ jobs:

steps:
- name: Checkout ${{ github.repository }}
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Download artifacts
uses: actions/download-artifact@v4
with:
Expand Down Expand Up @@ -415,7 +415,7 @@ jobs:

steps:
- name: Checkout ${{ github.repository }}
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Download Python.framework for iphoneos
uses: actions/download-artifact@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/clear-cache.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

steps:
- name: Checkout ${{ github.repository }}
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Clear all cache
run: gh cache delete -a
env:
Expand Down
Loading