Skip to content

Commit cb3bf32

Browse files
Bump actions/checkout from 5 to 6 (#3307)
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent daef4fd commit cb3bf32

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

.github/workflows/labeler.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
app-id: ${{ secrets.BOT_APP_ID }}
4848
private-key: ${{ secrets.BOT_APP_KEY }}
4949
- name: Checkout parent repository
50-
uses: actions/checkout@v5
50+
uses: actions/checkout@v6
5151
- name: Install Python 3.12
5252
uses: actions/setup-python@v6
5353
with:

.github/workflows/release-porting-guide.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,12 @@ jobs:
3737
private-key: ${{ secrets.BOT_APP_KEY }} # From github-bot environment
3838

3939
- name: Check out this repo src
40-
uses: actions/checkout@v5
40+
uses: actions/checkout@v6
4141
with:
4242
token: ${{ steps.create_token.outputs.token }}
4343

4444
- name: Check out ansible-build-data
45-
uses: actions/checkout@v5
45+
uses: actions/checkout@v6
4646
with:
4747
repository: ansible-community/ansible-build-data
4848
ref: ${{ inputs.ansible-build-data-branch }}

.github/workflows/reusable-build-docs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
runs-on: ubuntu-latest
4141
steps:
4242
- name: Checkout Ansible documentation
43-
uses: actions/checkout@v5
43+
uses: actions/checkout@v6
4444
with:
4545
repository: >-
4646
${{

.github/workflows/reusable-deploy-docs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ jobs:
8181
echo "ENV_URL=${TEST_URL}" >> "${GITHUB_ENV}"
8282
8383
- name: Checkout the deploy directory
84-
uses: actions/checkout@v5
84+
uses: actions/checkout@v6
8585
with:
8686
repository: ${{ env.DEST_REPO }}
8787
ref: ${{ env.BRANCH }}

.github/workflows/reusable-nox.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
name: "Run nox ${{ matrix.session }} session"
3838
steps:
3939
- name: Check out repo
40-
uses: actions/checkout@v5
40+
uses: actions/checkout@v6
4141
- name: Setup nox
4242
uses: wntrblm/[email protected]
4343
with:

.github/workflows/reusable-pip-compile.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
app-id: ${{ secrets.BOT_APP_ID }}
4848
private-key: ${{ secrets.BOT_APP_KEY }}
4949
- name: Check out repo
50-
uses: actions/checkout@v5
50+
uses: actions/checkout@v6
5151
with:
5252
fetch-depth: 0
5353
ref: "${{ inputs.base-branch }}"

.github/workflows/tag.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@ jobs:
2525
app-id: ${{ secrets.BOT_APP_ID }}
2626
private-key: ${{ secrets.BOT_APP_KEY }}
2727
- name: Check out us
28-
uses: actions/checkout@v5
28+
uses: actions/checkout@v6
2929
with:
3030
path: ansible-documentation
3131
fetch-depth: 0
3232
token: "${{ steps.create_token.outputs.token }}"
3333
- name: Check out core
34-
uses: actions/checkout@v5
34+
uses: actions/checkout@v6
3535
with:
3636
repository: ansible/ansible
3737
path: ansible

0 commit comments

Comments
 (0)