Skip to content

Commit

Permalink
Upgrade CI (13 Sep 2024 07:58:44)
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Sep 13, 2024
1 parent 2bb3178 commit 0a1c28b
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dco_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ jobs:
run: |
mkdir -p ./pr
echo ${{ github.event.number }} > ./pr/NR
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: pr
path: pr/
12 changes: 6 additions & 6 deletions .github/workflows/operator_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -239,12 +239,12 @@ jobs:
cd operator-test-playbooks
ansible-playbook -i localhost, -e ansible_connection=local -e run_upstream=true -e run_prepare_catalog_repo_upstream=true -e catalog_repo=$OPP_THIS_REPO_BASE/$OPP_THIS_REPO -e catalog_repo_branch=$OPP_THIS_BRANCH upstream/local.yml --tags reset_tools,operator_info -e operator_base_dir=/tmp/community-operators-for-catalog/operators -e operators=$OPP_FORCE_OPERATORS -e cluster_type=$OPP_PRODUCTION_TYPE -e strict_cluster_version_labels=true -e production_registry_namespace=$OPP_RELEASE_BUNDLE_REGISTRY/$OPP_RELEASE_BUNDLE_ORGANIZATION $ANSIBLE_ARGS
- name: Upload operator_info
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: operator_info
path: "/tmp/operator-test/op_info.yaml"
- name: Upload converted operators
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: operators_converted
path: "/tmp/operator-test/operators"
Expand All @@ -262,12 +262,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download operator_info
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: operator_info
path: /tmp/operator-test/
- name: Download converted operators
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: operators_converted
path: /tmp/operator-test/operators
Expand Down Expand Up @@ -305,12 +305,12 @@ jobs:
fail-fast: false
steps:
- name: Download operator_info
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: operator_info
path: /tmp/operator-test/
- name: Download converted operators
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: operators_converted
path: /tmp/operator-test/operators
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/operator_release_manual.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -246,12 +246,12 @@ jobs:
cd operator-test-playbooks
ansible-playbook -i localhost, -e ansible_connection=local -e run_upstream=true -e run_prepare_catalog_repo_upstream=true -e catalog_repo=$OPP_THIS_REPO_BASE/$OPP_THIS_REPO -e catalog_repo_branch=$OPP_THIS_BRANCH upstream/local.yml --tags reset_tools,operator_info -e operator_base_dir=/tmp/community-operators-for-catalog/operators -e operators=$OPP_FORCE_OPERATORS -e cluster_type=$OPP_PRODUCTION_TYPE -e strict_cluster_version_labels=true -e production_registry_namespace=$OPP_RELEASE_BUNDLE_REGISTRY/$OPP_RELEASE_BUNDLE_ORGANIZATION $ANSIBLE_ARGS
- name: Upload operator_info
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: operator_info
path: "/tmp/operator-test/op_info.yaml"
- name: Upload converted operators
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: operators_converted
path: "/tmp/operator-test/operators"
Expand All @@ -269,12 +269,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download operator_info
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: operator_info
path: /tmp/operator-test/
- name: Download converted operators
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: operators_converted
path: /tmp/operator-test/operators
Expand Down Expand Up @@ -311,12 +311,12 @@ jobs:
fail-fast: false
steps:
- name: Download operator_info
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: operator_info
path: /tmp/operator-test/
- name: Download converted operators
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: operators_converted
path: /tmp/operator-test/operators
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/operator_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -165,14 +165,14 @@ jobs:
allow-repeats: true

- name: Upload operator_info
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
if: (steps.op-traffic-light.outputs.opp_op_delete == '0' || steps.op-traffic-light.outputs.opp_is_new_operatror == '1' || steps.op-traffic-light.outputs.opp_recreate == '1') && (steps.op-traffic-light.outputs.opp_ci_yaml_only == '0')
with:
name: operator_info
path: "/tmp/operator-test/op_info.yaml"
- name: Upload converted operators
if: (steps.op-traffic-light.outputs.opp_op_delete == '0' || steps.op-traffic-light.outputs.opp_is_new_operatror == '1' || steps.op-traffic-light.outputs.opp_recreate == '1') && (steps.op-traffic-light.outputs.opp_ci_yaml_only == '0')
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: operators_converted
path: "/tmp/operator-test/operators"
Expand Down Expand Up @@ -207,12 +207,12 @@ jobs:
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Download operator_info
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: operator_info
path: "/tmp/operator-test/"
- name: Download converted operators
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: operators_converted
path: "/tmp/operator-test/operators"
Expand Down Expand Up @@ -394,7 +394,7 @@ jobs:
run: |
mkdir -p ./pr
echo ${{ github.event.number }} > ./pr/NR
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: pr
path: pr/
Expand Down

0 comments on commit 0a1c28b

Please sign in to comment.