diff --git a/.github/scripts/mocks/azure-mock.yaml b/.github/scripts/mocks/azure-mock.yaml index cd30e9787..3dc074cfe 100644 --- a/.github/scripts/mocks/azure-mock.yaml +++ b/.github/scripts/mocks/azure-mock.yaml @@ -33,6 +33,7 @@ spec: "--blobPort", "80", "--queueHost", "0.0.0.0", "--queuePort", "81", + "--skipApiVersionCheck", ] name: azurite ports: diff --git a/.github/workflows/end2end.yaml b/.github/workflows/end2end.yaml index 880051773..cbdc4c519 100644 --- a/.github/workflows/end2end.yaml +++ b/.github/workflows/end2end.yaml @@ -408,7 +408,10 @@ jobs: cache-dependency-path: tests/ctst/yarn.lock - name: Install ctst test dependencies working-directory: tests/ctst - run: yarn install + run: >- + yarn install --frozen-lock-file --network-concurrency 1 || ( + yarn cache clean && yarn install --frozen-lock-file --network-concurrency 1 + ) - name: Lint ctst tests working-directory: tests/ctst run: yarn lint diff --git a/VERSION b/VERSION index 63cf97a9e..87121263d 100644 --- a/VERSION +++ b/VERSION @@ -1,4 +1,4 @@ -VERSION="2.13.9" +VERSION="2.13.10" VERSION_HOTFIX= diff --git a/solution/deps.yaml b/solution/deps.yaml index 5bf2ff3fa..e0df039ba 100644 --- a/solution/deps.yaml +++ b/solution/deps.yaml @@ -6,7 +6,7 @@ backbeat: dashboard: backbeat/backbeat-dashboards image: backbeat policy: backbeat/backbeat-policies - tag: 9.1.7 + tag: 9.1.10 envsubst: BACKBEAT_TAG busybox: image: busybox @@ -16,7 +16,7 @@ cloudserver: sourceRegistry: ghcr.io/scality dashboard: cloudserver/cloudserver-dashboards image: cloudserver - tag: 9.1.13 + tag: 9.1.14 envsubst: CLOUDSERVER_TAG drctl: sourceRegistry: ghcr.io/scality @@ -113,7 +113,7 @@ sorbet: policy: sorbet/sorbet-policies dashboard: sorbet/sorbet-dashboards image: sorbet - tag: v1.2.2 + tag: v1.2.3 envsubst: SORBET_TAG stern: # tail any pod logs with pattern matchin tag: 1.33.0 @@ -130,7 +130,7 @@ vault: zenko-operator: sourceRegistry: ghcr.io/scality image: zenko-operator - tag: v1.8.8 + tag: v1.8.9 envsubst: ZENKO_OPERATOR_TAG zookeeper: sourceRegistry: ghcr.io/adobe/zookeeper-operator diff --git a/tests/ctst/package.json b/tests/ctst/package.json index 2a273e1e1..9a70d6735 100644 --- a/tests/ctst/package.json +++ b/tests/ctst/package.json @@ -9,6 +9,7 @@ "private": true, "dependencies": { "@kubernetes/client-node": "^0.21.0", + "@types/node": "^20.1.1", "@types/proper-lockfile": "^4.1.4", "@types/qs": "^6.9.15", "assert": "^2.1.0", @@ -25,6 +26,7 @@ "@aws-sdk/client-s3": "^3.901.0", "@aws-sdk/client-sts": "^3.901.0", "@eslint/compat": "^1.1.1", + "@types/node": "^20.17.0", "cli-testing": "github:scality/cli-testing.git#1.2.4", "eslint": "^9.9.1", "eslint-config-scality": "scality/Guidelines#8.3.0",