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
2 changes: 1 addition & 1 deletion .github/workflows/_shared-docs-build-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ jobs:
}

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

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_shared-docs-build-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ jobs:
core.setOutput('skip-init', skipInit)

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

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/generate-wiki-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
repository: ${{ github.repository }}.wiki
path: ${{ env.WIKI }}

- uses: actions/setup-python@v3
- uses: actions/setup-python@v4
if: fromJSON(env.SHOULD_RUN)
with:
python-version: '3.9'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-action-build-init.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
uses: actions/checkout@v3

- name: Install Python
uses: actions/setup-python@v3
uses: actions/setup-python@v4
with:
python-version: 3.9

Expand Down
8 changes: 4 additions & 4 deletions actions/ansible-docs-build-html/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,10 @@ runs:
echo "::group::Copy the build files"
mkdir -p "$COPY_BUILD"
rsync -avc --delete-after "$HTML/" "$COPY_BUILD/"
echo "::set-output name=build-html::$COPY_BUILD"
echo "build-html=$COPY_BUILD" >> ${GITHUB_OUTPUT}
echo "::endgroup::"
else
echo "::set-output name=build-html::$HTML"
echo "build-html=$HTML" >> ${GITHUB_OUTPUT}
fi

- name: Upload artifact
Expand All @@ -77,7 +77,7 @@ runs:
id: outs
shell: bash
run: |
echo "::set-output name=hash::${{ hashFiles(steps.build.outputs.build-html) }}"
echo "hash=${{ hashFiles(steps.build.outputs.build-html) }}" >> ${GITHUB_OUTPUT}
if [[ "${{ inputs.artifact-upload }}" == "true" ]] ; then
echo "::set-output name=artifact-url::https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}"
echo "artifact-url=https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}" >> ${GITHUB_OUTPUT}
fi
4 changes: 2 additions & 2 deletions actions/ansible-docs-build-init/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,5 +123,5 @@ runs:
pip install -r "${{ inputs.dest-dir }}/requirements.txt"
echo "::endgroup::"

echo "::set-output name=build-script::${{ inputs.dest-dir }}/build.sh"
echo "::set-output name=build-html::${{ inputs.dest-dir }}/build/html"
echo "build-script=${{ inputs.dest-dir }}/build.sh" >> ${GITHUB_OUTPUT}
echo "build-html=${{ inputs.dest-dir }}/build/html" >> ${GITHUB_OUTPUT}