Skip to content

Commit 5e9287e

Browse files
actions/upload-artifact version must match actions/download-artifact
1 parent 3f77c74 commit 5e9287e

File tree

7 files changed

+20
-20
lines changed

7 files changed

+20
-20
lines changed

.github/workflows/oci-make-nightly.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
make package-generic-unix PROJECT_VERSION=${{ matrix.project_version || steps.tag.outputs.project_version }}+${{ github.sha }}
5757
5858
- name: Upload package-generic-unix
59-
uses: actions/upload-artifact@v4
59+
uses: actions/upload-artifact@v5
6060
with:
6161
name: package-generic-unix-otp${{ matrix.otp_version }}-${{ matrix.branch }}
6262
path: PACKAGES/rabbitmq-server-*.tar.xz

.github/workflows/oci-make.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
make package-generic-unix PROJECT_VERSION=${{ env.VERSION }}
6767
- name: Upload package-generic-unix
6868
if: steps.authorized.outputs.authorized == 'true'
69-
uses: actions/upload-artifact@v4
69+
uses: actions/upload-artifact@v5
7070
with:
7171
name: package-generic-unix-otp${{ matrix.otp_version }}
7272
path: PACKAGES/rabbitmq-server-*.tar.xz

.github/workflows/peer-discovery-aws.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
make -C deps/rabbitmq_peer_discovery_aws ct-integration
7373
- name: UPLOAD TEST LOGS
7474
if: always()
75-
uses: actions/upload-artifact@v4
75+
uses: actions/upload-artifact@v5
7676
with:
7777
name: CT logs
7878
path: "logs/"

.github/workflows/test-authnz.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -73,22 +73,22 @@ jobs:
7373
7474
- name: Run Suites
7575
id: tests
76-
run: |
76+
run: |
7777
export IMAGE_TAG=$(find PACKAGES/rabbitmq-server-generic-unix-*.tar.xz | awk -F 'PACKAGES/rabbitmq-server-generic-unix-|.tar.xz' '{print $2}')
78-
export CONF_DIR_PREFIX="$(mktemp -d)"
78+
export CONF_DIR_PREFIX="$(mktemp -d)"
7979
export RABBITMQ_DOCKER_IMAGE=pivotalrabbitmq/rabbitmq:$IMAGE_TAG
8080
echo "Running selenium tests with "
8181
echo " - CONF_DIR_PREFIX: ${CONF_DIR_PREFIX}"
8282
echo " - IMAGE_TAG: ${IMAGE_TAG}"
83-
echo " - RABBITMQ_DOCKER_IMAGE: ${RABBITMQ_DOCKER_IMAGE}"
84-
echo "SELENIUM_ARTIFACTS=${CONF_DIR_PREFIX}" >> $GITHUB_ENV
85-
${SELENIUM_DIR}/run-suites.sh full-suite-authnz-messaging
86-
83+
echo " - RABBITMQ_DOCKER_IMAGE: ${RABBITMQ_DOCKER_IMAGE}"
84+
echo "SELENIUM_ARTIFACTS=${CONF_DIR_PREFIX}" >> $GITHUB_ENV
85+
${SELENIUM_DIR}/run-suites.sh full-suite-authnz-messaging
86+
8787
- name: Upload Test Artifacts
8888
if: ${{ failure() && steps.tests.outcome == 'failure' }}
89-
uses: actions/upload-artifact@v4.3.2
89+
uses: actions/upload-artifact@v5.3.2
9090
with:
91-
name: test-artifacts-${{ matrix.browser }}-${{ matrix.erlang_version }}
91+
name: test-artifacts-${{ matrix.browser }}-${{ matrix.erlang_version }}
9292
path: ${{ env.SELENIUM_ARTIFACTS }}/*
9393

9494
summary-selenium:

.github/workflows/test-make-target.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ jobs:
138138
139139
- name: UPLOAD TEST LOGS
140140
if: always()
141-
uses: actions/upload-artifact@v4
141+
uses: actions/upload-artifact@v5
142142
with:
143143
name: CT logs (${{ inputs.plugin }} ${{ inputs.make_target }} OTP-${{ inputs.erlang_version }} ${{ inputs.metadata_store }}${{ inputs.mixed_clusters && ' mixed' || '' }})
144144
path: |

.github/workflows/test-management-ui-for-pr.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,18 +63,18 @@ jobs:
6363
id: tests
6464
run: |
6565
export IMAGE_TAG=$(find PACKAGES/rabbitmq-server-generic-unix-*.tar.xz | awk -F 'PACKAGES/rabbitmq-server-generic-unix-|.tar.xz' '{print $2}')
66-
export CONF_DIR_PREFIX="$(mktemp -d)"
66+
export CONF_DIR_PREFIX="$(mktemp -d)"
6767
export RABBITMQ_DOCKER_IMAGE=pivotalrabbitmq/rabbitmq:$IMAGE_TAG
6868
echo "Running selenium tests with "
6969
echo " - CONF_DIR_PREFIX: ${CONF_DIR_PREFIX}"
7070
echo " - IMAGE_TAG: ${IMAGE_TAG}"
71-
echo " - RABBITMQ_DOCKER_IMAGE: ${RABBITMQ_DOCKER_IMAGE}"
71+
echo " - RABBITMQ_DOCKER_IMAGE: ${RABBITMQ_DOCKER_IMAGE}"
7272
echo "SELENIUM_ARTIFACTS=${CONF_DIR_PREFIX}" >> $GITHUB_ENV
7373
${SELENIUM_DIR}/run-suites.sh short-suite-management-ui
74-
74+
7575
- name: Upload Test Artifacts
7676
if: ${{ failure() && steps.tests.outcome == 'failure' }}
77-
uses: actions/upload-artifact@v4
77+
uses: actions/upload-artifact@v5
7878
with:
7979
name: test-artifacts-${{ matrix.browser }}-${{ matrix.erlang_version }}
8080
path: ${{ env.SELENIUM_ARTIFACTS }}/*

.github/workflows/test-management-ui.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -72,13 +72,13 @@ jobs:
7272
echo "Running selenium tests with "
7373
echo " - CONF_DIR_PREFIX: ${CONF_DIR_PREFIX}"
7474
echo " - IMAGE_TAG: ${IMAGE_TAG}"
75-
echo " - RABBITMQ_DOCKER_IMAGE: ${RABBITMQ_DOCKER_IMAGE}"
75+
echo " - RABBITMQ_DOCKER_IMAGE: ${RABBITMQ_DOCKER_IMAGE}"
7676
echo "SELENIUM_ARTIFACTS=${CONF_DIR_PREFIX}" >> $GITHUB_ENV
77-
${SELENIUM_DIR}/run-suites.sh full-suite-management-ui
78-
77+
${SELENIUM_DIR}/run-suites.sh full-suite-management-ui
78+
7979
- name: Upload Test Artifacts
8080
if: ${{ failure() && steps.tests.outcome == 'failure' }}
81-
uses: actions/upload-artifact@v4.3.2
81+
uses: actions/upload-artifact@v5.3.2
8282
with:
8383
name: test-artifacts-${{ matrix.browser }}-${{ matrix.erlang_version }}
8484
path: ${{ env.SELENIUM_ARTIFACTS }}/*

0 commit comments

Comments
 (0)