From 052b6166a82ad65a0f9f354280555276b48c7f19 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 1 Jul 2026 02:57:07 +0000 Subject: [PATCH] chore(deps): update actions/checkout action to v7 --- .github/workflows/apps-deploy-dev.yml | 4 ++-- .github/workflows/apps-deploy-prod.yml | 2 +- .github/workflows/apps-deploy-stage.yml | 4 ++-- .github/workflows/cypress.yml | 6 +++--- .github/workflows/deploy-prod.yml | 4 ++-- .github/workflows/deploy-stage.yml | 6 +++--- .github/workflows/library-deploy-dev.yml | 6 +++--- .github/workflows/library-deploy-prod.yml | 2 +- .github/workflows/library-deploy-stage.yml | 4 ++-- .github/workflows/notify-new-candidate-version.yml | 2 +- .github/workflows/release-please.yml | 2 +- 11 files changed, 21 insertions(+), 21 deletions(-) diff --git a/.github/workflows/apps-deploy-dev.yml b/.github/workflows/apps-deploy-dev.yml index 7e737025..57521d57 100644 --- a/.github/workflows/apps-deploy-dev.yml +++ b/.github/workflows/apps-deploy-dev.yml @@ -57,7 +57,7 @@ jobs: steps: # Check-out repository under $GITHUB_WORKSPACE, so the job can access it - name: Check out code - uses: actions/checkout@v6 + uses: actions/checkout@v7 # This step runs a single command to execute unitary testing - name: Test job @@ -73,7 +73,7 @@ jobs: steps: # Check-out repository under $GITHUB_WORKSPACE, so the job can access it - name: Check out code - uses: actions/checkout@v6 + uses: actions/checkout@v7 # Download and cache distribution of the requested Node.js version, and add it to the PATH - name: Setup node diff --git a/.github/workflows/apps-deploy-prod.yml b/.github/workflows/apps-deploy-prod.yml index 4dcd57fd..1f70b051 100644 --- a/.github/workflows/apps-deploy-prod.yml +++ b/.github/workflows/apps-deploy-prod.yml @@ -61,7 +61,7 @@ jobs: steps: # Check-out repository under $GITHUB_WORKSPACE, so the job can access it - name: Check out code - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: ref: ${{ inputs.tag }} diff --git a/.github/workflows/apps-deploy-stage.yml b/.github/workflows/apps-deploy-stage.yml index 87e826e7..cd4ebe3c 100644 --- a/.github/workflows/apps-deploy-stage.yml +++ b/.github/workflows/apps-deploy-stage.yml @@ -61,7 +61,7 @@ jobs: steps: # Check-out repository under $GITHUB_WORKSPACE, so the job can access it - name: Check out code - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: ref: ${{ inputs.tag }} @@ -121,7 +121,7 @@ jobs: steps: # Check-out repository under $GITHUB_WORKSPACE, so the job can access it - name: Check out code - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: ref: ${{ inputs.tag }} diff --git a/.github/workflows/cypress.yml b/.github/workflows/cypress.yml index b1a053e1..0223f64e 100644 --- a/.github/workflows/cypress.yml +++ b/.github/workflows/cypress.yml @@ -89,7 +89,7 @@ jobs: steps: # Check-out repository under $GITHUB_WORKSPACE, so the job can access it - name: Check out code - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Yarn Install and Cache uses: graasp/graasp-deploy/.github/actions/yarn-install-and-cache@v1 @@ -104,7 +104,7 @@ jobs: steps: # Check-out repository under $GITHUB_WORKSPACE, so the job can access it - name: Check out code - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Yarn install and Cache dependencies uses: graasp/graasp-deploy/.github/actions/yarn-install-and-cache@v1 @@ -121,7 +121,7 @@ jobs: steps: # Check-out repository under $GITHUB_WORKSPACE, so the job can access it - name: Check out code - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Yarn install and Cache dependencies uses: graasp/graasp-deploy/.github/actions/yarn-install-and-cache@v1 diff --git a/.github/workflows/deploy-prod.yml b/.github/workflows/deploy-prod.yml index 35c30713..1c350a54 100644 --- a/.github/workflows/deploy-prod.yml +++ b/.github/workflows/deploy-prod.yml @@ -36,7 +36,7 @@ jobs: # Check-out repository under $GITHUB_WORKSPACE, so the job can access it - name: Check out code - uses: actions/checkout@v6 + uses: actions/checkout@v7 # Install the python version needed - name: Setup python @@ -107,7 +107,7 @@ jobs: environment: production steps: - name: Check out code - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: ref: main diff --git a/.github/workflows/deploy-stage.yml b/.github/workflows/deploy-stage.yml index 5105c691..25264f00 100644 --- a/.github/workflows/deploy-stage.yml +++ b/.github/workflows/deploy-stage.yml @@ -36,7 +36,7 @@ jobs: # Check-out repository under $GITHUB_WORKSPACE, so the job can access it - name: Check out code - uses: actions/checkout@v6 + uses: actions/checkout@v7 # Install the python version needed - name: Setup python @@ -109,7 +109,7 @@ jobs: commit-hash: ${{ steps.commit.outputs.commit_hash }} steps: - name: Check out code - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: # checkout the latest commits of main -> this is where we will commit to ref: main @@ -145,7 +145,7 @@ jobs: LATEST_FILE_NAME_STAGING: ${{ needs.generate-matrix.outputs.latest }} steps: - name: Check out code - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: ref: ${{ needs.update-deployed-stack.outputs.commit-hash }} diff --git a/.github/workflows/library-deploy-dev.yml b/.github/workflows/library-deploy-dev.yml index 5497713b..71de780e 100644 --- a/.github/workflows/library-deploy-dev.yml +++ b/.github/workflows/library-deploy-dev.yml @@ -81,7 +81,7 @@ jobs: steps: # Check-out repository under $GITHUB_WORKSPACE, so the job can access it - name: Check out code - uses: actions/checkout@v6 + uses: actions/checkout@v7 # This step runs a single command to execute unitary testing - name: Test job @@ -100,7 +100,7 @@ jobs: steps: # Check-out repository under $GITHUB_WORKSPACE, so the job can access it - name: Check out code - uses: actions/checkout@v6 + uses: actions/checkout@v7 # Set output variable tag with the current checked out ref - name: Set Tag Number @@ -178,7 +178,7 @@ jobs: steps: # Check-out repository under $GITHUB_WORKSPACE, so the job can access it - name: Check out code - uses: actions/checkout@v6 + uses: actions/checkout@v7 # Configure AWS credential and region environment variables for use in next steps - name: Configure AWS credentials diff --git a/.github/workflows/library-deploy-prod.yml b/.github/workflows/library-deploy-prod.yml index 69f983f9..34aecc46 100644 --- a/.github/workflows/library-deploy-prod.yml +++ b/.github/workflows/library-deploy-prod.yml @@ -89,7 +89,7 @@ jobs: steps: # Check-out repository under $GITHUB_WORKSPACE, so the job can access it - name: Check out code - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: ref: ${{ inputs.tag }} diff --git a/.github/workflows/library-deploy-stage.yml b/.github/workflows/library-deploy-stage.yml index 1b2c45e5..28179a78 100644 --- a/.github/workflows/library-deploy-stage.yml +++ b/.github/workflows/library-deploy-stage.yml @@ -89,7 +89,7 @@ jobs: steps: # Check-out repository under $GITHUB_WORKSPACE, so the job can access it - name: Check out code - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: ref: ${{ inputs.tag }} @@ -207,7 +207,7 @@ jobs: steps: # Check-out repository under $GITHUB_WORKSPACE, so the job can access it - name: Check out code - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: ref: ${{ inputs.tag }} diff --git a/.github/workflows/notify-new-candidate-version.yml b/.github/workflows/notify-new-candidate-version.yml index 2506fe68..c1c1f9c1 100644 --- a/.github/workflows/notify-new-candidate-version.yml +++ b/.github/workflows/notify-new-candidate-version.yml @@ -23,7 +23,7 @@ jobs: steps: - name: Check out code - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: ref: main diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index 3fca9d30..9118697c 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -21,7 +21,7 @@ jobs: token: ${{ secrets.RELEASE_PLEASE_PAT }} release-type: simple - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Tag major and minor versions uses: jacobsvante/tag-major-minor-action@v0.1