mirror of
https://github.com/nix-community/nix-on-droid-app.git
synced 2025-11-24 19:29:46 +01:00
Changed: Bump actions/checkout and actions/upload-artifact to v4
This commit is contained in:
parent
eb0cb408a4
commit
708281cea2
3 changed files with 9 additions and 9 deletions
14
.github/workflows/debug_build.yml
vendored
14
.github/workflows/debug_build.yml
vendored
|
|
@ -14,7 +14,7 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Clone repository
|
- name: Clone repository
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Build APKs
|
- name: Build APKs
|
||||||
shell: bash {0}
|
shell: bash {0}
|
||||||
|
|
@ -66,7 +66,7 @@ jobs:
|
||||||
fi
|
fi
|
||||||
|
|
||||||
- name: Attach universal APK file
|
- name: Attach universal APK file
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: ${{ env.APK_BASENAME_PREFIX }}_universal
|
name: ${{ env.APK_BASENAME_PREFIX }}_universal
|
||||||
path: |
|
path: |
|
||||||
|
|
@ -74,7 +74,7 @@ jobs:
|
||||||
${{ env.APK_DIR_PATH }}/output-metadata.json
|
${{ env.APK_DIR_PATH }}/output-metadata.json
|
||||||
|
|
||||||
- name: Attach arm64-v8a APK file
|
- name: Attach arm64-v8a APK file
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: ${{ env.APK_BASENAME_PREFIX }}_arm64-v8a
|
name: ${{ env.APK_BASENAME_PREFIX }}_arm64-v8a
|
||||||
path: |
|
path: |
|
||||||
|
|
@ -82,7 +82,7 @@ jobs:
|
||||||
${{ env.APK_DIR_PATH }}/output-metadata.json
|
${{ env.APK_DIR_PATH }}/output-metadata.json
|
||||||
|
|
||||||
- name: Attach armeabi-v7a APK file
|
- name: Attach armeabi-v7a APK file
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: ${{ env.APK_BASENAME_PREFIX }}_armeabi-v7a
|
name: ${{ env.APK_BASENAME_PREFIX }}_armeabi-v7a
|
||||||
path: |
|
path: |
|
||||||
|
|
@ -90,7 +90,7 @@ jobs:
|
||||||
${{ env.APK_DIR_PATH }}/output-metadata.json
|
${{ env.APK_DIR_PATH }}/output-metadata.json
|
||||||
|
|
||||||
- name: Attach x86_64 APK file
|
- name: Attach x86_64 APK file
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: ${{ env.APK_BASENAME_PREFIX }}_x86_64
|
name: ${{ env.APK_BASENAME_PREFIX }}_x86_64
|
||||||
path: |
|
path: |
|
||||||
|
|
@ -98,7 +98,7 @@ jobs:
|
||||||
${{ env.APK_DIR_PATH }}/output-metadata.json
|
${{ env.APK_DIR_PATH }}/output-metadata.json
|
||||||
|
|
||||||
- name: Attach x86 APK file
|
- name: Attach x86 APK file
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: ${{ env.APK_BASENAME_PREFIX }}_x86
|
name: ${{ env.APK_BASENAME_PREFIX }}_x86
|
||||||
path: |
|
path: |
|
||||||
|
|
@ -106,7 +106,7 @@ jobs:
|
||||||
${{ env.APK_DIR_PATH }}/output-metadata.json
|
${{ env.APK_DIR_PATH }}/output-metadata.json
|
||||||
|
|
||||||
- name: Attach sha256sums file
|
- name: Attach sha256sums file
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: sha256sums
|
name: sha256sums
|
||||||
path: |
|
path: |
|
||||||
|
|
|
||||||
|
|
@ -15,5 +15,5 @@ jobs:
|
||||||
name: "Validation"
|
name: "Validation"
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v4
|
||||||
- uses: gradle/wrapper-validation-action@v1
|
- uses: gradle/wrapper-validation-action@v1
|
||||||
|
|
|
||||||
2
.github/workflows/run_tests.yml
vendored
2
.github/workflows/run_tests.yml
vendored
|
|
@ -15,7 +15,7 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Clone repository
|
- name: Clone repository
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v4
|
||||||
- name: Execute tests
|
- name: Execute tests
|
||||||
run: |
|
run: |
|
||||||
./gradlew test
|
./gradlew test
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue