Skip to content

Commit

Permalink
gha: bump actions/checkout from 4.1.0 to 4.1.1
Browse files Browse the repository at this point in the history
Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.0 to 4.1.1.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v4.1.0...v4.1.1)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] authored Oct 23, 2023
1 parent 0a0f8f9 commit b38db72
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
languages: ${{ steps.languages.outputs.languages }}
steps:
- name: Check out ${{ github.repository }}
uses: actions/checkout@v4.1.0
uses: actions/checkout@v4.1.1

- name: Set up Python 3
uses: actions/setup-python@v4.7.1
Expand All @@ -58,7 +58,7 @@ jobs:
echo "old_versions=$(scripts/manage_versions.py others)" >> $GITHUB_OUTPUT
- name: Check out branch ${{ steps.version.outputs.current }}
uses: actions/checkout@v4.1.0
uses: actions/checkout@v4.1.1
with:
ref: ${{ steps.version.outputs.current }}
path: ${{ steps.version.outputs.current }}
Expand Down Expand Up @@ -91,18 +91,18 @@ jobs:

steps:
- name: Check out ${{ github.repository }}
uses: actions/checkout@v4.1.0
uses: actions/checkout@v4.1.1

- name: Check out ${{ matrix.cpython_version }} branch of CPython
uses: actions/checkout@v4.1.0
uses: actions/checkout@v4.1.1
with:
repository: python/cpython
persist-credentials: false
ref: ${{ matrix.cpython_version }}
path: cpython

- name: Check out ${{ matrix.cpython_version }} branch of ${{ github.repository }}
uses: actions/checkout@v4.1.0
uses: actions/checkout@v4.1.1
with:
ref: ${{ matrix.cpython_version }}
path: cpython/Doc/locales
Expand Down Expand Up @@ -213,16 +213,16 @@ jobs:

steps:
- name: Check out main
uses: actions/checkout@v4.1.0
uses: actions/checkout@v4.1.1

- name: Check out branch ${{ needs.trigger.outputs.current }}
uses: actions/checkout@v4.1.0
uses: actions/checkout@v4.1.1
with:
ref: ${{ needs.trigger.outputs.current }}
path: ${{ needs.trigger.outputs.current }}

- name: Check out branch ${{ matrix.branch }}
uses: actions/checkout@v4.1.0
uses: actions/checkout@v4.1.1
with:
ref: ${{ matrix.branch }}
path: ${{ matrix.branch }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/updpyver.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out ${{ github.repository }}
uses: actions/checkout@v4.1.0
uses: actions/checkout@v4.1.1
with:
fetch-depth: 0

Expand Down

0 comments on commit b38db72

Please sign in to comment.