Skip to content

Commit

Permalink
Update main.yml: use Node 20 actions
Browse files Browse the repository at this point in the history
  • Loading branch information
agarciadom authored Feb 25, 2024
1 parent f715eb5 commit 1cec3be
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,20 +19,20 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Set up JDK 17
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
- name: Set up Node
uses: actions/setup-node@v4.0.0
uses: actions/setup-node@v4.0.2
with:
node-version: '16.x'
- name: Install Node dependencies
Expand Down

0 comments on commit 1cec3be

Please sign in to comment.