Skip to content

Commit

Permalink
fix(gradle.yml): Bump to node v18
Browse files Browse the repository at this point in the history
  • Loading branch information
GeorgeV220 committed Jan 6, 2023
1 parent 816d005 commit c2df873
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on: [push]
jobs:
build:

runs-on: ubuntu-18.04
runs-on: ubuntu-latest
# We want to run on external PRs, but not on our own internal PRs as they'll be run
# by the push to the branch.
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
Expand Down Expand Up @@ -39,7 +39,7 @@ jobs:

test:

runs-on: ubuntu-18.04
runs-on: ubuntu-latest

steps:
- name: Set up JDK 17
Expand Down Expand Up @@ -84,18 +84,18 @@ jobs:
needs: [build, test]
if: github.ref == 'refs/heads/master' || 'refs/heads/beta' || github.ref == 'refs/heads/alpha'

runs-on: ubuntu-18.04
runs-on: ubuntu-latest

steps:
- name: Set up JDK 17
uses: actions/setup-java@v1
with:
java-version: 17

- name: Set up Node.js v16.x
- name: Set up Node.js v18.x
uses: actions/setup-node@v1
with:
node-version: "16.x"
node-version: "18.x"

- name: Cache Gradle
id: cache-gradle
Expand Down

0 comments on commit c2df873

Please sign in to comment.