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
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ jobs:
build:
runs-on: "ubuntu-latest"
steps:
- uses: "actions/checkout@v4"
- uses: "actions/checkout@v6"

- name: "Set up Python"
uses: "actions/setup-python@v5"
uses: "actions/setup-python@v6"
with:
python-version: "3.12"

Expand All @@ -28,7 +28,7 @@ jobs:
make dist-test

- name: "Upload wheels"
uses: "actions/upload-artifact@v4"
uses: "actions/upload-artifact@v7"
with:
name: "pulp_docs_package"
path: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/code-quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v6
with:
python-version: "3.12"

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/docs-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ jobs:
steps:
- name: "Checkout pulp-docs repository"
if: "${{ github.event.repository.name != 'pulp-docs' }}"
uses: "actions/checkout@v4"
uses: "actions/checkout@v6"
with:
repository: "pulp/pulp-docs"
path: "pulp-docs"
ref: "${{ inputs.pulpdocs_ref }}"
fetch-depth: 0

- name: "Checkout component repository"
uses: "actions/checkout@v4"
uses: "actions/checkout@v6"
with:
path: "${{ github.event.repository.name }}"
fetch-depth: 0
Expand All @@ -43,7 +43,7 @@ jobs:
make docs-ci COMPONENT=${{ github.event.repository.name }}
EOL

- uses: "actions/setup-python@v5"
- uses: "actions/setup-python@v6"
with:
python-version: "3.12"

Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,18 +14,18 @@ jobs:
runs-on: "ubuntu-latest"

steps:
- uses: "actions/checkout@v4"
- uses: "actions/checkout@v6"
with:
fetch-depth: 0
path: "pulp-docs"
- uses: "actions/setup-python@v5"
- uses: "actions/setup-python@v6"
with:
python-version: "3.13"
- name: "Build HTML site for pulpproject.org."
run: |
.github/workflows/scripts/build_all_docs.sh
- name: "Upload documentation site"
uses: "actions/upload-artifact@v4"
uses: "actions/upload-artifact@v7"
with:
name: "pulpproject.org.tar"
path: "pulp-docs/pulpproject.org.tar"
Expand All @@ -40,17 +40,17 @@ jobs:
PULP_DOCS_KEY: "${{ secrets.PULP_DOCS_KEY }}"

steps:
- uses: "actions/checkout@v4"
- uses: "actions/checkout@v6"
with:
fetch-depth: 1
path: "pulp-docs"

- uses: "actions/setup-python@v5"
- uses: "actions/setup-python@v6"
with:
python-version: "3.13"

- name: "Download built docs"
uses: "actions/download-artifact@v4"
uses: "actions/download-artifact@v8"
with:
name: "pulpproject.org.tar"
path: "pulp-docs/"
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ jobs:
run-test:
runs-on: "ubuntu-latest"
steps:
- uses: "actions/checkout@v4"
- uses: "actions/checkout@v6"
- name: "Set up Python"
uses: "actions/setup-python@v5"
uses: "actions/setup-python@v6"
with:
python-version: "3.12"

- name: "Download built distribution"
uses: "actions/download-artifact@v4"
uses: "actions/download-artifact@v8"
with:
name: "pulp_docs_package"
path: "dist/"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/update-data.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ jobs:
contents: "write"
steps:
- name: "Checkout docs-data branch"
uses: "actions/checkout@v4"
uses: "actions/checkout@v6"
with:
ref: "docs-data"

- name: "Set up Python"
uses: "actions/setup-python@v5"
uses: "actions/setup-python@v6"
with:
python-version: "3.12"

Expand Down