Skip to content

Commit

Permalink
Set fetch-depth to 0 for updated recipes and use actions/checkout@v4 …
Browse files Browse the repository at this point in the history
…instead of actions/checkout@v3
  • Loading branch information
misl6 committed Dec 17, 2023
1 parent 5333c35 commit 9a9978b
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 9 deletions.
16 changes: 9 additions & 7 deletions .github/workflows/kivy_ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: macos-latest
steps:
- name: Checkout kivy-ios
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
Expand All @@ -26,7 +26,7 @@ jobs:
runs_on: [macos-latest, apple-silicon-m1]
steps:
- name: Checkout kivy-ios
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set up Python 3.x
uses: actions/setup-python@v4
with:
Expand All @@ -46,7 +46,7 @@ jobs:
run: |
toolchain build python3 kivy
- name: Checkout kivy for tests apps
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: kivy/kivy
path: kivy-ci-clone
Expand All @@ -61,7 +61,7 @@ jobs:
runs_on: [macos-latest, apple-silicon-m1]
steps:
- name: Checkout kivy-ios
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set up Python 3.x
uses: actions/setup-python@v4
with:
Expand All @@ -85,7 +85,7 @@ jobs:
. venv/bin/activate
toolchain build python3 kivy
- name: Checkout kivy for tests apps
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: kivy/kivy
path: kivy-ci-clone
Expand All @@ -101,8 +101,10 @@ jobs:
matrix:
runs_on: [macos-latest, apple-silicon-m1]
steps:
- name: Checkout kivy-ios
uses: actions/checkout@v3
- name: Checkout kivy-ios (all-history)
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python 3.x
uses: actions/setup-python@v4
with:
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@v3
- uses: actions/checkout@v4
- name: Set up Python 3.x
uses: actions/setup-python@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/setup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: macos-latest
steps:
- name: Checkout kivy-ios
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set up Python 3.x
uses: actions/setup-python@v4
with:
Expand Down

0 comments on commit 9a9978b

Please sign in to comment.