From 9afde51938ec2c60cca7414a176fd3fdca09b1c8 Mon Sep 17 00:00:00 2001 From: Max Kasperowski Date: Fri, 24 May 2024 12:37:43 +0200 Subject: [PATCH] update deprecated actions in ci --- .github/workflows/ci.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) 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