Skip to content

Commit

Permalink
Update GitHub Actions and local configuration for tool versions (#540)
Browse files Browse the repository at this point in the history
## Description
Update GitHub Actions and local configuration for Java and Node.js
version.

## Motivation and Context
Keep up with latest versions.
  • Loading branch information
jelovirt authored Feb 25, 2024
2 parents ae7fecb + 98243ea commit 5ba6793
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
8 changes: 5 additions & 3 deletions .github/actions/render/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,16 @@ runs:
using: 'composite'
steps:
- name: Set up JDK 17
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 17
cache: 'gradle'
- name: Set Node.js version 12.x
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: 12.x
node-version: '20.x'
cache: 'npm'
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/prettier.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '18.x'
node-version: '20.x'
cache: 'npm'

- name: Install dependencies
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ jobs:
with:
distribution: temurin
java-version: 17
cache: 'gradle'
- name: Check out website
uses: actions/checkout@v4
with:
Expand Down
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
20.11.1

0 comments on commit 5ba6793

Please sign in to comment.