Skip to content
Merged
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
8 changes: 4 additions & 4 deletions .github/workflows/_shared-docs-build-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ jobs:
steps:
- name: Variable setup
id: vars
uses: actions/github-script@v7
uses: actions/github-script@v8
env:
RUNNER_TEMP: ${{ runner.temp }}
EVENT_ACTION: ${{ github.event.action }}
Expand Down Expand Up @@ -282,7 +282,7 @@ jobs:
}

- name: Set up Python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: ${{ inputs.python }}

Expand All @@ -301,7 +301,7 @@ jobs:
fi

- name: Checkout BASE
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
ref: ${{ github.event.pull_request.base.sha }}
path: ${{ steps.vars.outputs.checkout-path }}
Expand Down Expand Up @@ -341,7 +341,7 @@ jobs:
artifact-upload: 'false'

- name: Checkout HEAD
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
# It would be better to use
#
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/_shared-docs-build-publish-gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
steps:
- name: Process variables
id: vars
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
script: |
const inputs = ${{ toJSON(inputs) }}
Expand Down Expand Up @@ -91,7 +91,7 @@ jobs:
- name: Retrieve rendered docs
if: inputs.action == 'publish'
id: download
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: ${{ inputs.artifact-name }}
path: html
Expand All @@ -114,7 +114,7 @@ jobs:

- name: Checkout repository
if: inputs.publish-gh-pages-branch
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
ref: gh-pages
path: gh-pages-checkout
Expand All @@ -129,7 +129,7 @@ jobs:

- name: Upload gh-pages branch as artifact
if: inputs.publish-gh-pages-branch
uses: actions/upload-pages-artifact@v3
uses: actions/upload-pages-artifact@v4
with:
path: gh-pages-checkout

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/_shared-docs-build-publish-surge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,15 @@ jobs:
- name: Retrieve rendered docs
if: inputs.action == 'publish'
id: download
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: ${{ inputs.artifact-name }}
path: html

- name: Install Node
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version: 14
node-version: 24

- name: Install Surge
run: npm install -g surge@0.23.1
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/_shared-docs-build-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ jobs:
steps:
- name: Variable setup
id: vars
uses: actions/github-script@v7
uses: actions/github-script@v8
env:
RUNNER_TEMP: ${{ runner.temp }}
with:
Expand Down Expand Up @@ -197,7 +197,7 @@ jobs:
core.setOutput('skip-init', skipInit)

- name: Set up Python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: ${{ inputs.python }}

Expand All @@ -217,7 +217,7 @@ jobs:
fi

- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
path: ${{ steps.vars.outputs.checkout-path }}
ref: ${{ inputs.build-ref }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/generate-wiki-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,19 +23,19 @@ jobs:
runs-on: ubuntu-latest
steps:
- if: fromJSON(env.SHOULD_RUN)
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
persist-credentials: false

- name: Checkout wiki
if: fromJSON(env.SHOULD_RUN)
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: ${{ github.repository }}.wiki
path: ${{ env.WIKI }}
persist-credentials: false

- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
if: fromJSON(env.SHOULD_RUN)
with:
python-version: '3.13'
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/test-action-build-html.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
persist-credentials: false

Expand All @@ -35,7 +35,7 @@ jobs:
artifact-upload: false

- name: Simple 1 - Download artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
id: simple1-artifact
with:
path: .artifacts/simple1
Expand Down Expand Up @@ -69,7 +69,7 @@ jobs:
artifact-upload: false

- name: Simple 2 - Download artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
id: simple2-artifact
with:
path: .artifacts/simple2
Expand Down Expand Up @@ -106,7 +106,7 @@ jobs:
artifact-name: tests-simple3

- name: Simple 3 - Download artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
id: simple3-artifact
with:
name: ${{ steps.simple3.outputs.artifact-name }}
Expand Down Expand Up @@ -156,7 +156,7 @@ jobs:
artifact-name: tests-simple4

- name: Simple 4 - Download artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
id: simple4-artifact
with:
name: ${{ steps.simple4.outputs.artifact-name }}
Expand Down Expand Up @@ -209,7 +209,7 @@ jobs:
artifact-name: tests-simple5

- name: Simple 5 - Download artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
id: simple5-artifact
with:
name: ${{ steps.simple5.outputs.artifact-name }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-action-build-init.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,12 +108,12 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
persist-credentials: false

- name: Install Python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: 3.13

Expand Down
8 changes: 4 additions & 4 deletions actions/ansible-docs-build-comment/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,15 +45,15 @@ runs:
steps:
- name: Look for an existing comment
id: fc
uses: peter-evans/find-comment@v3
uses: peter-evans/find-comment@v4
with:
issue-number: ${{ inputs.pr-number }}
body-includes: ${{ inputs.body-includes }}
comment-author: 'github-actions[bot]'

- name: Determine actions
id: vars
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
script: |
const inputs = ${{ toJSON(inputs )}}
Expand All @@ -78,7 +78,7 @@ runs:
if: >-
steps.vars.outputs.action == 'remove'
&& steps.fc.outputs.comment-id
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
script: |
github.rest.issues.deleteComment({
Expand All @@ -90,7 +90,7 @@ runs:
- name: Post or update comment
id: comment
if: steps.vars.outputs.action == 'update'
uses: peter-evans/create-or-update-comment@v4
uses: peter-evans/create-or-update-comment@v5
with:
comment-id: ${{ steps.fc.outputs.comment-id }}
issue-number: ${{ inputs.pr-number }}
Expand Down
2 changes: 1 addition & 1 deletion actions/ansible-docs-build-diff/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ runs:

- name: Create diff
id: diff
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
script: |
// attribution: https://stackoverflow.com/a/3561711/3905079
Expand Down
2 changes: 1 addition & 1 deletion actions/ansible-docs-build-html/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ runs:

- name: Upload artifact
if: fromJSON(inputs.artifact-upload)
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
path: ${{ steps.build.outputs.build-html }}
name: ${{ inputs.artifact-name }}
Expand Down