mirror of
https://github.com/ansible/ansible-documentation.git
synced 2026-03-27 13:28:51 +07:00
Bump actions/checkout from 4 to 5 (#3007)
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [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...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
2
.github/workflows/labeler.yml
vendored
2
.github/workflows/labeler.yml
vendored
@@ -47,7 +47,7 @@ jobs:
|
||||
app-id: ${{ secrets.BOT_APP_ID }}
|
||||
private-key: ${{ secrets.BOT_APP_KEY }}
|
||||
- name: Checkout parent repository
|
||||
uses: actions/checkout@v4
|
||||
uses: actions/checkout@v5
|
||||
- name: Install Python 3.12
|
||||
uses: actions/setup-python@v5
|
||||
with:
|
||||
|
||||
4
.github/workflows/release-porting-guide.yml
vendored
4
.github/workflows/release-porting-guide.yml
vendored
@@ -37,12 +37,12 @@ jobs:
|
||||
private-key: ${{ secrets.BOT_APP_KEY }} # From github-bot environment
|
||||
|
||||
- name: Check out this repo src
|
||||
uses: actions/checkout@v4
|
||||
uses: actions/checkout@v5
|
||||
with:
|
||||
token: ${{ steps.create_token.outputs.token }}
|
||||
|
||||
- name: Check out ansible-build-data
|
||||
uses: actions/checkout@v4
|
||||
uses: actions/checkout@v5
|
||||
with:
|
||||
repository: ansible-community/ansible-build-data
|
||||
ref: ${{ inputs.ansible-build-data-branch }}
|
||||
|
||||
2
.github/workflows/reusable-build-docs.yaml
vendored
2
.github/workflows/reusable-build-docs.yaml
vendored
@@ -40,7 +40,7 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout Ansible documentation
|
||||
uses: actions/checkout@v4
|
||||
uses: actions/checkout@v5
|
||||
with:
|
||||
repository: >-
|
||||
${{
|
||||
|
||||
2
.github/workflows/reusable-deploy-docs.yaml
vendored
2
.github/workflows/reusable-deploy-docs.yaml
vendored
@@ -81,7 +81,7 @@ jobs:
|
||||
echo "ENV_URL=${TEST_URL}" >> "${GITHUB_ENV}"
|
||||
|
||||
- name: Checkout the deploy directory
|
||||
uses: actions/checkout@v4
|
||||
uses: actions/checkout@v5
|
||||
with:
|
||||
repository: ${{ env.DEST_REPO }}
|
||||
ref: ${{ env.BRANCH }}
|
||||
|
||||
2
.github/workflows/reusable-nox.yml
vendored
2
.github/workflows/reusable-nox.yml
vendored
@@ -37,7 +37,7 @@ jobs:
|
||||
name: "Run nox ${{ matrix.session }} session"
|
||||
steps:
|
||||
- name: Check out repo
|
||||
uses: actions/checkout@v4
|
||||
uses: actions/checkout@v5
|
||||
- name: Setup nox
|
||||
uses: wntrblm/nox@2025.05.01
|
||||
with:
|
||||
|
||||
2
.github/workflows/reusable-pip-compile.yml
vendored
2
.github/workflows/reusable-pip-compile.yml
vendored
@@ -47,7 +47,7 @@ jobs:
|
||||
app-id: ${{ secrets.BOT_APP_ID }}
|
||||
private-key: ${{ secrets.BOT_APP_KEY }}
|
||||
- name: Check out repo
|
||||
uses: actions/checkout@v4
|
||||
uses: actions/checkout@v5
|
||||
with:
|
||||
fetch-depth: 0
|
||||
ref: "${{ inputs.base-branch }}"
|
||||
|
||||
4
.github/workflows/tag.yml
vendored
4
.github/workflows/tag.yml
vendored
@@ -25,13 +25,13 @@ jobs:
|
||||
app-id: ${{ secrets.BOT_APP_ID }}
|
||||
private-key: ${{ secrets.BOT_APP_KEY }}
|
||||
- name: Check out us
|
||||
uses: actions/checkout@v4
|
||||
uses: actions/checkout@v5
|
||||
with:
|
||||
path: ansible-documentation
|
||||
fetch-depth: 0
|
||||
token: "${{ steps.create_token.outputs.token }}"
|
||||
- name: Check out core
|
||||
uses: actions/checkout@v4
|
||||
uses: actions/checkout@v5
|
||||
with:
|
||||
repository: ansible/ansible
|
||||
path: ansible
|
||||
|
||||
Reference in New Issue
Block a user