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/build-test-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ jobs:
go-version-file: go.mod

- name: Get operator manifest
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: operator-manifests

Expand All @@ -195,15 +195,15 @@ jobs:
node_image: ${{ env.KIND_NODE_IMAGE }}

- name: Download Operator manifest
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
# This manifest was generated by the build_operator job, and it has the image tag for this specific execution.
# Thanks to that, we don't have to make YAML modifications to deploy the right image.
with:
name: operator-manifests
path: tmp/

- name: Download Operator artifact
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: operator_image
path: ${{ runner.temp }}/operator-image
Expand Down Expand Up @@ -250,7 +250,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v5
- name: Get operator manifest
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: operator-manifests
- name: Release
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/olm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ jobs:
token: ${{ secrets.RABBITMQ_CI_TOKEN }}

- name: Download OLM artifact
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: olm-artifact
path: olm-package-ci
Expand Down Expand Up @@ -231,7 +231,7 @@ jobs:
token: ${{ secrets.RABBITMQ_CI_TOKEN }}

- name: Download OLM artifact
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: olm-artifact
path: olm-package-ci
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ jobs:
only: ytt

- name: Download artifact
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: operator_image
path: /tmp
Expand Down