Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Build: bump actions #130

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 40
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Update apt
run: sudo apt update
- name: Install ninja
Expand All @@ -26,7 +26,7 @@ jobs:
runs-on: macos-latest
timeout-minutes: 40
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Install ninja
run: brew install ninja
- name: Configure and build
Expand All @@ -36,7 +36,7 @@ jobs:
runs-on: windows-latest
timeout-minutes: 40
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Install ninja
run: choco install ninja
- name: Configure and build
Expand All @@ -47,7 +47,7 @@ jobs:
runs-on: windows-latest
timeout-minutes: 40
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: 'x64-uwp(Debug)'
uses: lukka/run-cmake@v10
with:
Expand Down Expand Up @@ -75,14 +75,14 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 40
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Update apt
run: sudo apt update
- name: Install ninja
run: sudo apt install ninja-build
- name: Setup Android NDK
id: setup-ndk
uses: nttld/setup-ndk@v1.0.6
uses: nttld/setup-ndk@v1.2.0
with:
ndk-version: r23b
add-to-path: false
Expand Down