From dd1ce387698b9c7e0a38121a4bca88a9e659bef4 Mon Sep 17 00:00:00 2001 From: emeroad Date: Fri, 31 May 2024 21:23:21 +0900 Subject: [PATCH] [#noissue] Bump workflow action from v3 to v4 --- .github/workflows/maven.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 80798eeab067d..27d3625f374ea 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -15,22 +15,22 @@ jobs: runs-on: ubuntu-20.04 steps: - name: Git checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Cache Maven packages - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.m2 key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} restore-keys: ${{ runner.os }}-m2 - name: Cache node modules - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: '**/node_modules' key: ${{ runner.os }}-node-modules-${{ hashFiles('**/package-lock.json') }} restore-keys: | ${{ runner.os }}-node-modules- - name: Cache node install - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: 'node_install' key: ${{ runner.os }}-node_install-${{ hashFiles('**/pom.xml') }}