Skip to content

Commit

Permalink
update deprecated actions in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Eddykasp committed May 24, 2024
1 parent a379798 commit 9afde51
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ jobs:

steps:
# Checkout the repository of both elk and elkjs, place them next to each other.
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
path: elk-live
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
repository: eclipse/elk-models
path: elk-live/elk-models
Expand All @@ -34,19 +34,20 @@ jobs:
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
restore-keys: ${{ runner.os }}-gradle
- name: Cache npm
uses: actions/cache@v1
uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package.json', '**/yarn.lock') }}
restore-keys: ${{ runner.os }}-node-
- name: Set up JDK ${{ matrix.java-version }}
uses: actions/setup-java@v1
uses: actions/setup-java@v2
with:
distribution: 'zulu'
java-version: ${{ matrix.java-version }}
- name: Grant execute permission for gradlew
run: chmod +x $GITHUB_WORKSPACE/elk-live/server/gradlew
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
# Build client-side code
Expand Down

0 comments on commit 9afde51

Please sign in to comment.