Skip to content

Commit 6b2ad2c

Browse files
authored
Pin the version of the container image (#109)
* Pin the version of the container image The pipeline was broken because it is pointing to the latest image, this PR pins its version * Update CI workflow for IBM MQ image version * The versions don't correspond to the tags
1 parent fb62953 commit 6b2ad2c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
runs-on: ubuntu-latest
2424
services:
2525
ibm-mq:
26-
image: icr.io/ibm-messaging/mq:latest
26+
image: icr.io/ibm-messaging/mq:9.4.5.1-r1
2727
ports:
2828
- 1414:1414
2929
- 9443:9443
@@ -55,7 +55,7 @@ jobs:
5555
- name: Setup least-privilege test user
5656
shell: bash
5757
run: |
58-
CONTAINER=$(docker ps -q --filter "ancestor=icr.io/ibm-messaging/mq:latest" | head -1)
58+
CONTAINER=$(docker ps -q --filter "ancestor=icr.io/ibm-messaging/mq:9.4.5.1-r1" | head -1)
5959
.github/workflows/setup-leastpriv-tests.sh docker "$CONTAINER"
6060
- name: Build
6161
run: dotnet build src --configuration Release

0 commit comments

Comments
 (0)