Skip to content

Commit

Permalink
Actions update (#197)
Browse files Browse the repository at this point in the history
As seen in the warnings of GitHub Actions after running the [latest ci
build](https://github.com/openandroidinstaller-dev/openandroidinstaller/actions/runs/5667887930),
it needs an update.

![grafik](https://github.com/openandroidinstaller-dev/openandroidinstaller/assets/82117109/0dacf559-f6d5-4a16-a964-1efc0b8cbac8)

TODO:

- [x] Update checkout
- [x] Update setup-python
- [x] Update automatic-releases
- [ ] ~~Update Python version(?)~~

---

See my latest test build here:
https://github.com/MagicLike/openandroidinstaller/actions/runs/5685471674

![grafik](https://github.com/openandroidinstaller-dev/openandroidinstaller/assets/82117109/8e1ed088-e72e-4bb0-9610-518b4d1e2940)
  • Loading branch information
tsterbak committed Aug 4, 2023
2 parents 47e6e72 + fda8272 commit e963043
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ jobs:
matrix:
os: ['ubuntu-20.04', 'ubuntu-latest']
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.9
- run: pip install -r requirements.txt
Expand All @@ -32,8 +32,8 @@ jobs:
matrix:
os: ['ubuntu-20.04', 'ubuntu-latest', 'macos-latest']
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.9
- run: pip install -r requirements.txt
Expand All @@ -48,8 +48,8 @@ jobs:
needs: ci
runs-on: 'windows-latest'
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.9
- run: pip install -r requirements.txt
Expand All @@ -66,7 +66,7 @@ jobs:
- build-windows
runs-on: 'ubuntu-latest'
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Download artifact
uses: actions/download-artifact@v3
- name: Display structure of downloaded files
Expand All @@ -86,7 +86,7 @@ jobs:
- name: Display structure of downloaded files
run: ls -R
- name: Create release
uses: marvinpinto/action-automatic-releases@latest
uses: dciborow/action-github-releases@v1.0.1
if: startsWith(github.ref, 'refs/tags/')
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/manual-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ jobs:
os: ['ubuntu-20.04', 'ubuntu-latest', 'macos-latest', 'windows-latest']

steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.9
- run: pip install -r requirements.txt
Expand Down

0 comments on commit e963043

Please sign in to comment.