Skip to content
This repository was archived by the owner on Feb 10, 2025. It is now read-only.
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
6 changes: 3 additions & 3 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ jobs:


- name: Download Ruby client
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4.1.7
with:
name: python-client.tar

Expand All @@ -179,7 +179,7 @@ jobs:


- name: Download Python client
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4.1.7
with:
name: python-client.tar

Expand All @@ -192,7 +192,7 @@ jobs:


- name: Download built docs
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4.1.7
with:
name: docs.tar

Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
- TEST: generate-bindings

steps:
- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v4.1.7
with:
name: pulp_python.tar

Expand Down Expand Up @@ -186,7 +186,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

steps:
- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v4.1.7
with:
name: pulp_python.tar

Expand Down Expand Up @@ -220,7 +220,7 @@ jobs:
- name: Push branch and tag to GitHub
run: bash .github/workflows/scripts/push_branch_and_tag_to_github.sh ${{ github.event.inputs.release }}
- name: Download built docs
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4.1.7
with:
name: docs.tar

Expand All @@ -231,7 +231,7 @@ jobs:
- name: Deploy plugin to pypi
run: bash .github/workflows/scripts/publish_plugin_pypi.sh ${{ github.event.inputs.release }}
- name: Download Python client
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4.1.7
with:
name: python-client.tar

Expand All @@ -241,7 +241,7 @@ jobs:
- name: Publish client to pypi
run: bash .github/workflows/scripts/publish_client_pypi.sh
- name: Download Ruby client
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4.1.7
with:
name: ruby-client.tar

Expand Down