diff --git a/.github/renovate.json5 b/.github/renovate.json5 index 4a3ace6..3629c25 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -29,11 +29,11 @@ extractVersionTemplate: "^cli-(?.+)$", }, { - // CLI version without v prefix in example.yml matrix (first value: "6.8.0") + // CLI version without v prefix in example.yml (label: without-v-prefix) customType: "regex", fileMatch: ["^\\.github/workflows/example\\.yml$"], matchStrings: [ - "cloudquery-version\\:\\s+\\[\"(?[^\"]+)\"", + "without-v-prefix[\\s\\S]*?cloudquery-version\\:\\s+\"(?[^\"]+)\"", ], packageNameTemplate: "cloudquery/cloudquery", depNameTemplate: "cli-no-v", @@ -41,11 +41,11 @@ extractVersionTemplate: "^cli-v(?.+)$", }, { - // CLI version with v prefix in example.yml matrix (second value: "v6.8.0") + // CLI version with v prefix in example.yml (label: with-v-prefix) customType: "regex", fileMatch: ["^\\.github/workflows/example\\.yml$"], matchStrings: [ - "cloudquery-version\\:\\s+\\[\"[^\"]+\",\\s*\"(?[^\"]+)\"", + "with-v-prefix[\\s\\S]*?cloudquery-version\\:\\s+\"(?[^\"]+)\"", ], packageNameTemplate: "cloudquery/cloudquery", depNameTemplate: "cli", diff --git a/.github/workflows/example_matrix.yml b/.github/workflows/example_matrix.yml index 3e33c5d..abe2f35 100644 --- a/.github/workflows/example_matrix.yml +++ b/.github/workflows/example_matrix.yml @@ -7,8 +7,6 @@ on: types: [opened, synchronize, reopened] permissions: contents: read -env: - CLOUDQUERY_VERSION: "v6.35.2" jobs: cloudquery: permissions: @@ -43,7 +41,7 @@ jobs: - name: Setup CloudQuery uses: ./. with: - version: ${{ env.CLOUDQUERY_VERSION }} + version: "v6.35.2" - name: Sync with CloudQuery run: cloudquery sync example_configs/spec.yml --log-console --shard ${{ matrix.shard }} env: