From 368a8e874a95c6d21717ef804b351c0daaff50ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Rodr=C3=ADguez=20Hern=C3=A1ndez?= Date: Mon, 17 Oct 2022 12:28:01 +0200 Subject: [PATCH] Bump actions/checkout version from v2 to v3 (#12980) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Carlos Rodríguez Hernández Signed-off-by: Carlos Rodríguez Hernández --- .github/workflows/cd-pipeline.yml | 6 +++--- .github/workflows/ci-pipeline-extra-thanos.yml | 2 +- .github/workflows/ci-pipeline.yml | 2 +- .github/workflows/generate-chart-readme.yml | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/cd-pipeline.yml b/.github/workflows/cd-pipeline.yml index 90f9e4f06..928129502 100644 --- a/.github/workflows/cd-pipeline.yml +++ b/.github/workflows/cd-pipeline.yml @@ -96,7 +96,7 @@ jobs: chart: ${{ steps.get-chart.outputs.chart }} result: ${{ steps.get-chart.outputs.result }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: path: charts fetch-depth: 2 # to be able to obtain files changed in the latest commit @@ -138,7 +138,7 @@ jobs: if: ${{ needs.get-chart.outputs.result == 'ok' }} name: VIB Publish steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 name: Checkout Repository with: path: charts @@ -176,7 +176,7 @@ jobs: with: path: ~/artifacts # If we perform a checkout of the master branch, we will find conflicts with the submodules - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: ref: 'index' path: index diff --git a/.github/workflows/ci-pipeline-extra-thanos.yml b/.github/workflows/ci-pipeline-extra-thanos.yml index c77f34d01..9b6eda0ba 100644 --- a/.github/workflows/ci-pipeline-extra-thanos.yml +++ b/.github/workflows/ci-pipeline-extra-thanos.yml @@ -25,7 +25,7 @@ jobs: runs-on: ubuntu-latest name: Verify BucketWeb on Tanzu Kubernetes Grid steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: ref: ${{ github.event.pull_request.head.ref }} repository: ${{ github.event.pull_request.head.repo.full_name }} diff --git a/.github/workflows/ci-pipeline.yml b/.github/workflows/ci-pipeline.yml index 3301a602c..c85629c40 100644 --- a/.github/workflows/ci-pipeline.yml +++ b/.github/workflows/ci-pipeline.yml @@ -93,7 +93,7 @@ jobs: ) name: VIB Verify steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 name: Checkout Repository with: ref: ${{ github.event.pull_request.head.ref }} diff --git a/.github/workflows/generate-chart-readme.yml b/.github/workflows/generate-chart-readme.yml index 8389d7626..700fbca3a 100644 --- a/.github/workflows/generate-chart-readme.yml +++ b/.github/workflows/generate-chart-readme.yml @@ -14,7 +14,7 @@ jobs: steps: - name: Checkout bitnami-labs/readme-generator-for-helm - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: repository: 'bitnami-labs/readme-generator-for-helm' ref: '1af12881436b1f58f0643d733fd5196b4a11caa8' @@ -35,7 +35,7 @@ jobs: run: cd readme-generator-for-helm && npm install - name: Checkout bitnami/charts - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: ref: ${{github.event.pull_request.head.ref}} repository: ${{github.event.pull_request.head.repo.full_name}}