From 1b2a458866227da7ca86ca4de08c9728fdd681eb Mon Sep 17 00:00:00 2001 From: Marcin Jasion <5058132+mjasion@users.noreply.github.com> Date: Wed, 12 Jul 2023 18:37:52 +0200 Subject: [PATCH] fix(actions): Switch the ubuntu-latest-8-cores and remove quotes from password parameter (#118) Switch the ubuntu-latest-8-cores Co-authored-by: Marcin Jasion --- .github/workflows/test.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index a40ef616..5606aac1 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -9,7 +9,7 @@ on: jobs: lint-test: - runs-on: ubuntu-latest + runs-on: ubuntu-latest-8-cores steps: - name: Checkout uses: actions/checkout@v3 @@ -53,4 +53,4 @@ jobs: if: steps.list-changed.outputs.changed == 'true' run: | ct lint-and-install --target-branch ${{ github.event.repository.default_branch }} --upgrade --debug \ - --helm-extra-set-args '--set ci=true --set global.blobvault.persistentVolume.storageClassName="standard" --set imagePullSecrets[0].name=iterativeai --set dockerUsername=${{ secrets.ITERATIVE_DOCKER_REGISTRY_USER }} --set dockerPassword="${{ secrets.ITERATIVE_DOCKER_REGISTRY_PASSWORD }}" --set dockerServer=docker.iterative.ai' + --helm-extra-set-args '--set ci=true --set global.blobvault.persistentVolume.storageClassName="standard" --set imagePullSecrets[0].name=iterativeai --set dockerUsername=${{ secrets.ITERATIVE_DOCKER_REGISTRY_USER }} --set dockerPassword=${{ secrets.ITERATIVE_DOCKER_REGISTRY_PASSWORD }} --set dockerServer=docker.iterative.ai'