-
-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
gha: bump actions/checkout in the all-github-actions group (#214)
Bumps the all-github-actions group with 1 update: [actions/checkout](https://github.com/actions/checkout). Updates `actions/checkout` from 4.1.6 to 4.1.7 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4.1.6...v4.1.7) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all-github-actions ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
- Loading branch information
1 parent
7129170
commit db661c9
Showing
2 changed files
with
10 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,7 +38,7 @@ jobs: | |
name: Build translated docs | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/[email protected].6 | ||
- uses: actions/[email protected].7 | ||
with: | ||
fetch-depth: 5 | ||
|
||
|
@@ -99,7 +99,7 @@ jobs: | |
name: Lint translations | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/[email protected].6 | ||
- uses: actions/[email protected].7 | ||
with: | ||
fetch-depth: 5 | ||
|
||
|
@@ -152,7 +152,7 @@ jobs: | |
name: Spell check translations | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/[email protected].6 | ||
- uses: actions/[email protected].7 | ||
with: | ||
fetch-depth: 5 | ||
|
||
|
@@ -186,7 +186,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out ${{ github.repository }} | ||
uses: actions/[email protected].6 | ||
uses: actions/[email protected].7 | ||
with: | ||
fetch-depth: 5 | ||
|
||
|
@@ -221,7 +221,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out ${{ github.repository }} | ||
uses: actions/[email protected].6 | ||
uses: actions/[email protected].7 | ||
|
||
- name: Set up Python 3 | ||
uses: actions/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,7 +35,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out ${{ github.repository }} | ||
uses: actions/[email protected].6 | ||
uses: actions/[email protected].7 | ||
|
||
- name: Get branch name on push or schedule | ||
if: | | ||
|
@@ -52,7 +52,7 @@ jobs: | |
run: echo "BRANCH=${{ github.event.inputs.BRANCH }}" >> $GITHUB_ENV | ||
|
||
- name: Check out CPython | ||
uses: actions/[email protected].6 | ||
uses: actions/[email protected].7 | ||
with: | ||
repository: python/cpython | ||
ref: ${{ env.BRANCH }} | ||
|
@@ -107,7 +107,7 @@ jobs: | |
contents: write | ||
steps: | ||
- name: Check out ${{ github.repository }} | ||
uses: actions/[email protected].6 | ||
uses: actions/[email protected].7 | ||
|
||
- name: Download PO files | ||
uses: actions/[email protected] | ||
|
@@ -166,13 +166,13 @@ jobs: | |
run: echo "CURRENT_BRANCH=${{ github.event.inputs.BRANCH }}" >> $GITHUB_ENV | ||
|
||
- name: Check out source branch (${{ env.CURRENT_BRANCH }}) | ||
uses: actions/[email protected].6 | ||
uses: actions/[email protected].7 | ||
with: | ||
path: ${{ env.CURRENT_BRANCH }} | ||
persist-credentials: false | ||
|
||
- name: Check out target branch (${{ matrix.branch }}) | ||
uses: actions/[email protected].6 | ||
uses: actions/[email protected].7 | ||
with: | ||
ref: ${{ matrix.branch }} | ||
path: ${{ matrix.branch }} | ||
|