From 11fe8c02d320682eca4e29125f3b0453207d6ff5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 May 2024 13:10:04 +0200 Subject: [PATCH] build(deps): bump actions/checkout from 4.1.5 to 4.1.6 (#1560) Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.5 to 4.1.6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/44c2b7a8a4ea60a981eaca3cf939b5f4305c123b...a5ac7e51b41094c92402da3b24376905380afc29) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .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 22b2f541..544bfa38 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,7 +22,7 @@ jobs: steps: - name: Clone repository - uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5 + uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6 - name: Set up Node.js uses: actions/setup-node@v4 diff --git a/.github/workflows/closeVote.yml b/.github/workflows/closeVote.yml index e278284f..72134b5a 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@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5 + - uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6 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 f9c48917..9daad0e9 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@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5 + - uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6 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@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5 + - uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6 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 7aceca30..9d325107 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@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5 + - uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6 with: fetch-depth: ${{ steps.nb-of-commits.outputs.plusOne }} persist-credentials: false