Update diffuse.yml

Fix node.js <20 deprecation
Update ndk to 27.c version

Resolves #13998
This commit is contained in:
mosfet80
2025-02-20 00:37:04 +01:00
committed by Greyson Parrelli
parent 998a5c09ae
commit 20216a773a

View File

@@ -8,7 +8,7 @@ permissions:
pull-requests: write # to comment on PR pull-requests: write # to comment on PR
env: env:
NDK_VERSION: '27.0.12077973' NDK_VERSION: '27.2.12479018'
jobs: jobs:
assemble-base: assemble-base:
@@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest-8-cores runs-on: ubuntu-latest-8-cores
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v4
with: with:
submodules: true submodules: true
ref: ${{ github.event.pull_request.base.sha }} ref: ${{ github.event.pull_request.base.sha }}
@@ -36,7 +36,7 @@ jobs:
- name: Cache base apk - name: Cache base apk
id: cache-base id: cache-base
uses: actions/cache@v3 uses: actions/cache@v4
with: with:
path: diffuse-base.apk path: diffuse-base.apk
key: diffuse-${{ github.event.pull_request.base.sha }} key: diffuse-${{ github.event.pull_request.base.sha }}
@@ -49,7 +49,7 @@ jobs:
if: steps.cache-base.outputs.cache-hit != 'true' if: steps.cache-base.outputs.cache-hit != 'true'
run: mv app/build/outputs/apk/playProd/release/*arm64*.apk diffuse-base.apk run: mv app/build/outputs/apk/playProd/release/*arm64*.apk diffuse-base.apk
- uses: actions/checkout@v3 - uses: actions/checkout@v4
with: with:
submodules: true submodules: true
clean: 'false' clean: 'false'