Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
app-id: ${{ secrets.BOT_APP_ID }}
private-key: ${{ secrets.BOT_APP_KEY }}
- name: Checkout parent repository
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Install Python 3.12
uses: actions/setup-python@v6
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-porting-guide.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,12 @@ jobs:
private-key: ${{ secrets.BOT_APP_KEY }} # From github-bot environment

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

- name: Check out ansible-build-data
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: ansible-community/ansible-build-data
ref: ${{ inputs.ansible-build-data-branch }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable-build-docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Ansible documentation
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: >-
${{
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable-deploy-docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:
echo "ENV_URL=${TEST_URL}" >> "${GITHUB_ENV}"
- name: Checkout the deploy directory
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: ${{ env.DEST_REPO }}
ref: ${{ env.BRANCH }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable-nox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
name: "Run nox ${{ matrix.session }} session"
steps:
- name: Check out repo
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Setup nox
uses: wntrblm/[email protected]
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable-pip-compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
app-id: ${{ secrets.BOT_APP_ID }}
private-key: ${{ secrets.BOT_APP_KEY }}
- name: Check out repo
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0
ref: "${{ inputs.base-branch }}"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@ jobs:
app-id: ${{ secrets.BOT_APP_ID }}
private-key: ${{ secrets.BOT_APP_KEY }}
- name: Check out us
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
path: ansible-documentation
fetch-depth: 0
token: "${{ steps.create_token.outputs.token }}"
- name: Check out core
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: ansible/ansible
path: ansible
Expand Down