Skip to content

Commit

Permalink
ci: Bump some GHA action versions (to ones that use Node 20)
Browse files Browse the repository at this point in the history
  • Loading branch information
torokati44 committed Feb 1, 2024
1 parent dc5a44c commit 6659a0b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
rust-target: i686-linux-android

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Add Android target to Rust
run: rustup target add ${{ matrix.rust-target }}
Expand All @@ -47,7 +47,7 @@ jobs:
cd native
cargo ndk --target ${{ matrix.android-abi }} --platform 26 -o ../jniLibs build --release
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: native-lib-${{ matrix.android-abi }}
path: jniLibs
Expand All @@ -57,9 +57,9 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with: # no name set, so all artifacts are downloaded
path: native-libs

Expand All @@ -69,7 +69,7 @@ jobs:
cp -r native-libs/*/* app/ruffle/src/main/jniLibs/
- name: Set up Java 17
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
Expand All @@ -81,7 +81,7 @@ jobs:
cd app
./gradlew assembleDebug # The release version doesn't work without signing
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: ruffle-debug-apks
path: app/ruffle/build/outputs/apk/debug/*.apk
Expand All @@ -103,7 +103,7 @@ jobs:
SIGNING_KEY_PASSWORD: ${{ secrets.SIGNING_KEY_PASSWORD }}
SIGNING_STORE_PASSWORD: ${{ secrets.SIGNING_STORE_PASSWORD }}

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
if: ${{ !github.event.pull_request.head.repo.fork }}
with:
name: ruffle-release-apks
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ jobs:
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Download artifacts
id: download-artifacts
uses: dawidd6/action-download-artifact@v2
uses: dawidd6/action-download-artifact@v3
with:
workflow: build.yml
branch: main
Expand Down

0 comments on commit 6659a0b

Please sign in to comment.