From a5f4a133597b693b5018b086ff8cd8cb9fccbb57 Mon Sep 17 00:00:00 2001 From: emeroad Date: Mon, 3 Jun 2024 10:35:40 +0900 Subject: [PATCH] [#11107] 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 ++++---- .github/workflows/maven.yml | 8 ++++---- 4 files changed, 16 insertions(+), 16 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') }} diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index d1a54a7c0d42..8d06785033fb 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -15,22 +15,22 @@ jobs: runs-on: ubuntu-22.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') }}