From ddf026a574e044d7b25a57b6c2d552704e161969 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 22 Dec 2023 12:09:00 +0000 Subject: [PATCH] Update actions/checkout action from vv3 to v4 --- .github/workflows/build_and_deploy.yml | 10 +++++----- .github/workflows/maintenance_mode_dev.yml | 2 +- .github/workflows/maintenance_mode_prod.yml | 2 +- .github/workflows/maintenance_mode_staging.yml | 2 +- .github/workflows/pull_request_build_and_deploy.yml | 2 +- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/build_and_deploy.yml b/.github/workflows/build_and_deploy.yml index f6b45db5a..2fac98cb5 100644 --- a/.github/workflows/build_and_deploy.yml +++ b/.github/workflows/build_and_deploy.yml @@ -9,7 +9,7 @@ name: Build and deploy jobs: build: steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Cache node modules id: cache-npm uses: actions/cache@v3 @@ -59,7 +59,7 @@ jobs: needs: [build] environment: 'dev' steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Download all workflow run artifacts uses: actions/download-artifact@v3 - name: Copy favicon @@ -76,7 +76,7 @@ jobs: needs: [build] environment: 'dev' steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Download all workflow run artifacts uses: actions/download-artifact@v3 - name: Copy favicon @@ -93,7 +93,7 @@ jobs: needs: [deploy_dev] environment: 'staging' steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Download all workflow run artifacts uses: actions/download-artifact@v3 - name: Copy favicon @@ -110,7 +110,7 @@ jobs: needs: [deploy_dev, deploy_staging] environment: 'prod' steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Download all workflow run artifacts uses: actions/download-artifact@v3 - name: Copy favicon diff --git a/.github/workflows/maintenance_mode_dev.yml b/.github/workflows/maintenance_mode_dev.yml index 6250ba683..b37eb1aaf 100644 --- a/.github/workflows/maintenance_mode_dev.yml +++ b/.github/workflows/maintenance_mode_dev.yml @@ -5,7 +5,7 @@ jobs: runs-on: ubuntu-latest environment: 'dev' steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Download all workflow run artifacts uses: actions/download-artifact@v3 - name: Copy maintenance mode file diff --git a/.github/workflows/maintenance_mode_prod.yml b/.github/workflows/maintenance_mode_prod.yml index 1d7820eab..1e0c6ba26 100644 --- a/.github/workflows/maintenance_mode_prod.yml +++ b/.github/workflows/maintenance_mode_prod.yml @@ -5,7 +5,7 @@ jobs: runs-on: ubuntu-latest environment: 'prod' steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Download all workflow run artifacts uses: actions/download-artifact@v3 - name: Copy maintenance mode file diff --git a/.github/workflows/maintenance_mode_staging.yml b/.github/workflows/maintenance_mode_staging.yml index 3fc5208df..02a197b57 100644 --- a/.github/workflows/maintenance_mode_staging.yml +++ b/.github/workflows/maintenance_mode_staging.yml @@ -5,7 +5,7 @@ jobs: runs-on: ubuntu-latest environment: 'staging' steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Download all workflow run artifacts uses: actions/download-artifact@v3 - name: Copy maintenance mode file diff --git a/.github/workflows/pull_request_build_and_deploy.yml b/.github/workflows/pull_request_build_and_deploy.yml index 14e4c7976..798fefa23 100644 --- a/.github/workflows/pull_request_build_and_deploy.yml +++ b/.github/workflows/pull_request_build_and_deploy.yml @@ -8,7 +8,7 @@ jobs: if: '${{ github.event.pull_request.head.repo.full_name == github.repository }}' runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Cache node modules id: cache-npm uses: actions/cache@v3