From 1e4fc6aa80ffc67c5ab2ec33bb468734d226fdb6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 25 Sep 2023 05:56:26 +0000 Subject: [PATCH] gha: bump actions/checkout from 4.0.0 to 4.1.0 Bumps [actions/checkout](https://github.com/actions/checkout) from 4.0.0 to 4.1.0. - [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/v4.0.0...v4.1.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/check.yml | 8 ++++---- .github/workflows/update.yml | 10 +++++----- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 6082ed0fa..ab63daad8 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -36,7 +36,7 @@ jobs: name: Build translated docs runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4.0.0 + - uses: actions/checkout@v4.1.0 with: fetch-depth: 5 @@ -95,7 +95,7 @@ jobs: name: Lint translations runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4.0.0 + - uses: actions/checkout@v4.1.0 with: fetch-depth: 5 @@ -145,7 +145,7 @@ jobs: name: Spell check translations runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4.0.0 + - uses: actions/checkout@v4.1.0 with: fetch-depth: 5 @@ -176,7 +176,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out ${{ github.repository }} - uses: actions/checkout@v4.0.0 + uses: actions/checkout@v4.1.0 with: fetch-depth: 5 diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml index d5a239cf5..847883a93 100644 --- a/.github/workflows/update.yml +++ b/.github/workflows/update.yml @@ -40,7 +40,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out ${{ github.repository }} - uses: actions/checkout@v4.0.0 + uses: actions/checkout@v4.1.0 - name: Get branch name on push or schedule if: | @@ -57,7 +57,7 @@ jobs: run: echo "BRANCH=${{ github.event.inputs.BRANCH }}" >> $GITHUB_ENV - name: Check out CPython - uses: actions/checkout@v4.0.0 + uses: actions/checkout@v4.1.0 with: repository: python/cpython ref: ${{ env.BRANCH }} @@ -112,7 +112,7 @@ jobs: contents: write steps: - name: Check out ${{ github.repository }} - uses: actions/checkout@v4.0.0 + uses: actions/checkout@v4.1.0 - name: Download PO files uses: actions/download-artifact@v3.0.2 @@ -171,13 +171,13 @@ jobs: run: echo "CURRENT_BRANCH=${{ github.event.inputs.BRANCH }}" >> $GITHUB_ENV - name: Check out source branch (${{ env.CURRENT_BRANCH }}) - uses: actions/checkout@v4.0.0 + uses: actions/checkout@v4.1.0 with: path: ${{ env.CURRENT_BRANCH }} persist-credentials: false - name: Check out target branch (${{ matrix.branch }}) - uses: actions/checkout@v4.0.0 + uses: actions/checkout@v4.1.0 with: ref: ${{ matrix.branch }} path: ${{ matrix.branch }}