diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5aaa591..86978d9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 @@ -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