From 5db85b9a983c90c14283ecdcdcfceb30b9568680 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Apr 2024 02:31:53 +0000 Subject: [PATCH] build(deps): bump actions/checkout from 3.5.2 to 4.1.3 Bumps [actions/checkout](https://github.com/actions/checkout) from 3.5.2 to 4.1.3. - [Release notes](https://github.com/actions/checkout/releases) - [Commits](https://github.com/actions/checkout/compare/v3.5.2...v4.1.3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 2 +- .github/workflows/closeVote.yml | 2 +- .github/workflows/initiateNewVote.yml | 4 ++-- .github/workflows/watchVote.yml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 99b814f6..192ea9b8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,7 +22,7 @@ jobs: steps: - name: Clone repository - uses: actions/checkout@v4 + uses: actions/checkout@v4.1.3 - name: Set up Node.js uses: actions/setup-node@v4 diff --git a/.github/workflows/closeVote.yml b/.github/workflows/closeVote.yml index 49516b55..486c0f3c 100644 --- a/.github/workflows/closeVote.yml +++ b/.github/workflows/closeVote.yml @@ -46,7 +46,7 @@ jobs: echo "minusOne=$(($NB_OF_COMMITS - 1))" >> $GITHUB_OUTPUT env: GH_TOKEN: ${{ github.token }} - - uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2 + - uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3 with: # Loading the default branch so we use the last version of the mailmap # rather than getting stuck to when the vote PR was open. diff --git a/.github/workflows/initiateNewVote.yml b/.github/workflows/initiateNewVote.yml index 674fc67d..caa22224 100644 --- a/.github/workflows/initiateNewVote.yml +++ b/.github/workflows/initiateNewVote.yml @@ -21,7 +21,7 @@ jobs: repository-projects: read runs-on: ubuntu-latest steps: - - uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2 + - uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3 with: persist-credentials: false # If the subject is still REPLACEME, that would mean it's a PR to modify @@ -56,7 +56,7 @@ jobs: repository-projects: read runs-on: ubuntu-latest steps: - - uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2 + - uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3 with: persist-credentials: true # we need the credentials to push the new vote branch - name: Install Node.js diff --git a/.github/workflows/watchVote.yml b/.github/workflows/watchVote.yml index ef470d02..aa0acb04 100644 --- a/.github/workflows/watchVote.yml +++ b/.github/workflows/watchVote.yml @@ -21,7 +21,7 @@ jobs: run: | echo "plusOne=$((${{ github.event.pull_request.commits }} + 1))" >> $GITHUB_OUTPUT echo "minusOne=$((${{ github.event.pull_request.commits }} - 1))" >> $GITHUB_OUTPUT - - uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2 + - uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3 with: fetch-depth: ${{ steps.nb-of-commits.outputs.plusOne }} persist-credentials: false