From 05f0a167627b2f738fba660b62527f12852c96fe Mon Sep 17 00:00:00 2001 From: emeroad Date: Mon, 3 Jun 2024 10:35:40 +0900 Subject: [PATCH] [#noissue] Bump workflow action from v3 to v4 --- .github/workflows/it-command.yml | 8 ++++---- .github/workflows/it-schedule.yml | 8 ++++---- .github/workflows/maven-central-deploy.yml | 8 ++++---- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/it-command.yml b/.github/workflows/it-command.yml index 64e234be72a0..50e0d7a4e46a 100644 --- a/.github/workflows/it-command.yml +++ b/.github/workflows/it-command.yml @@ -20,24 +20,24 @@ jobs: body: | > Action has been started. [Click here to see the action](${{ steps.vars.outputs.run-url }}) - name: Git checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: "refs/pull/${{ env.PR_NUMBER }}/merge" - 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 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 install - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: "node_install" key: ${{ runner.os }}-node_install-${{ hashFiles('**/pom.xml') }} diff --git a/.github/workflows/it-schedule.yml b/.github/workflows/it-schedule.yml index 596882f6d824..4570050011bb 100644 --- a/.github/workflows/it-schedule.yml +++ b/.github/workflows/it-schedule.yml @@ -7,22 +7,22 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Git checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - 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 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 install - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: 'node_install' key: ${{ runner.os }}-node_install-${{ hashFiles('**/pom.xml') }} diff --git a/.github/workflows/maven-central-deploy.yml b/.github/workflows/maven-central-deploy.yml index 98947b6d5803..adbba2f74095 100644 --- a/.github/workflows/maven-central-deploy.yml +++ b/.github/workflows/maven-central-deploy.yml @@ -18,24 +18,24 @@ jobs: - run: | echo "Release ref: ${{ github.event.inputs.git-ref }}" - name: Git checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ github.event.inputs.git-ref }} - 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') }}