Skip to content

Commit 4d03deb

Browse files
chore(main): update tagged references
1 parent 46b9f1e commit 4d03deb

11 files changed

Lines changed: 26 additions & 26 deletions

File tree

.github/workflows/cd.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -802,7 +802,7 @@ jobs:
802802

803803
ci:
804804
name: CI
805-
uses: grafana/plugin-ci-workflows/.github/workflows/ci.yml@main
805+
uses: grafana/plugin-ci-workflows/.github/workflows/ci.yml@ci-cd-workflows/v10.2.1
806806
needs:
807807
- setup
808808
with:
@@ -1021,7 +1021,7 @@ jobs:
10211021

10221022
- name: Check and create stub
10231023
id: check-and-create-stub
1024-
uses: grafana/plugin-ci-workflows/actions/internal/plugins/publish/check-and-create-stub@main
1024+
uses: grafana/plugin-ci-workflows/actions/internal/plugins/publish/check-and-create-stub@ci-cd-workflows/v10.2.1
10251025
if: ${{ matrix.environment != 'prod' && matrix.environment != 'prod-canary' }}
10261026
with:
10271027
plugin-id: ${{ fromJSON(needs.ci.outputs.plugin).id }}
@@ -1031,13 +1031,13 @@ jobs:
10311031

10321032
- name: Check artifact ZIP(s)
10331033
id: check-artifact-zips
1034-
uses: grafana/plugin-ci-workflows/actions/internal/plugins/publish/check-artifacts@main
1034+
uses: grafana/plugin-ci-workflows/actions/internal/plugins/publish/check-artifacts@ci-cd-workflows/v10.2.1
10351035
with:
10361036
zips: ${{ needs.upload-to-gcs-release.outputs.gcs-zip-urls }}
10371037
plugin-id: ${{ fromJSON(needs.ci.outputs.plugin).id }}
10381038

10391039
- name: Publish to catalog
1040-
uses: grafana/plugin-ci-workflows/actions/plugins/publish/publish@main
1040+
uses: grafana/plugin-ci-workflows/actions/plugins/publish/publish@ci-cd-workflows/v10.2.1
10411041
with:
10421042
zips: ${{ needs.upload-to-gcs-release.outputs.gcs-zip-urls }}
10431043
environment: ${{ matrix.environment == 'prod-canary' && 'prod' || matrix.environment }}
@@ -1347,7 +1347,7 @@ jobs:
13471347
permission_set: website-docs
13481348

13491349
- name: Publish docs
1350-
uses: grafana/plugin-ci-workflows/actions/internal/plugins/docs/publish@main
1350+
uses: grafana/plugin-ci-workflows/actions/internal/plugins/docs/publish@ci-cd-workflows/v10.2.1
13511351
with:
13521352
id: ${{ fromJSON(needs.ci.outputs.plugin).id }}
13531353
version: ${{ fromJSON(needs.ci.outputs.plugin).version }}
@@ -1397,7 +1397,7 @@ jobs:
13971397

13981398
- name: Parse changelog
13991399
id: changelog
1400-
uses: grafana/plugin-ci-workflows/actions/internal/plugins/changelog@main
1400+
uses: grafana/plugin-ci-workflows/actions/internal/plugins/changelog@ci-cd-workflows/v10.2.1
14011401
with:
14021402
changelog-path: ${{ inputs.plugin-directory }}/CHANGELOG.md
14031403

.github/workflows/ci.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,7 @@ env:
389389
jobs:
390390
check-for-release-channel:
391391
name: Check for release channel
392-
uses: grafana/plugin-ci-workflows/.github/workflows/check-release-channel.yml@main
392+
uses: grafana/plugin-ci-workflows/.github/workflows/check-release-channel.yml@ci-cd-workflows/v10.2.1
393393
with:
394394
DO-NOT-USE-allow-pinned-commit-hashes: ${{ inputs.DO-NOT-USE-allow-pinned-commit-hashes }}
395395

@@ -496,7 +496,7 @@ jobs:
496496

497497
- name: Setup
498498
id: setup
499-
uses: grafana/plugin-ci-workflows/actions/internal/plugins/setup@main
499+
uses: grafana/plugin-ci-workflows/actions/internal/plugins/setup@ci-cd-workflows/v10.2.1
500500
with:
501501
plugin-directory: ${{ inputs.plugin-directory }}
502502
node-version: ${{ fromJson(steps.tooling-versions.outputs.result).nodeVersion }}
@@ -566,7 +566,7 @@ jobs:
566566

567567
- name: Test and build frontend
568568
id: frontend
569-
uses: grafana/plugin-ci-workflows/actions/internal/plugins/frontend@main
569+
uses: grafana/plugin-ci-workflows/actions/internal/plugins/frontend@ci-cd-workflows/v10.2.1
570570
with:
571571
plugin-directory: ${{ inputs.plugin-directory }}
572572
secrets: ${{ (fromJson(steps.workflow-context.outputs.result).isTrusted && inputs.frontend-secrets != '') && inputs.frontend-secrets || '' }}
@@ -575,7 +575,7 @@ jobs:
575575
- name: Test and build backend
576576
id: backend
577577
if: ${{ steps.check-for-backend.outputs.has-backend == 'true' }}
578-
uses: grafana/plugin-ci-workflows/actions/internal/plugins/backend@main
578+
uses: grafana/plugin-ci-workflows/actions/internal/plugins/backend@ci-cd-workflows/v10.2.1
579579
with:
580580
github-token: ${{ steps.generate-github-token.outputs.token || '' }}
581581
plugin-directory: ${{ inputs.plugin-directory }}
@@ -584,7 +584,7 @@ jobs:
584584

585585
- name: Package universal ZIP
586586
id: universal-zip
587-
uses: grafana/plugin-ci-workflows/actions/internal/plugins/package@main
587+
uses: grafana/plugin-ci-workflows/actions/internal/plugins/package@ci-cd-workflows/v10.2.1
588588
with:
589589
universal: "true"
590590
dist-folder: ${{ inputs.plugin-directory }}/dist
@@ -595,7 +595,7 @@ jobs:
595595

596596
- name: Package os/arch ZIPs
597597
id: os-arch-zips
598-
uses: grafana/plugin-ci-workflows/actions/internal/plugins/package@main
598+
uses: grafana/plugin-ci-workflows/actions/internal/plugins/package@ci-cd-workflows/v10.2.1
599599
with:
600600
universal: "false"
601601
dist-folder: ${{ inputs.plugin-directory }}/dist
@@ -606,7 +606,7 @@ jobs:
606606

607607
- name: Trufflehog secrets scanning
608608
if: ${{ inputs.run-trufflehog == true }}
609-
uses: grafana/plugin-ci-workflows/actions/internal/plugins/trufflehog@main
609+
uses: grafana/plugin-ci-workflows/actions/internal/plugins/trufflehog@ci-cd-workflows/v10.2.1
610610
with:
611611
trufflehog-version: ${{ inputs.trufflehog-version || env.DEFAULT_TRUFFLEHOG_VERSION }}
612612
folder: ${{ inputs.plugin-directory }}/dist-artifacts
@@ -755,13 +755,13 @@ jobs:
755755
shell: bash
756756

757757
- name: Test docs
758-
uses: grafana/plugin-ci-workflows/actions/internal/plugins/docs/test@main
758+
uses: grafana/plugin-ci-workflows/actions/internal/plugins/docs/test@ci-cd-workflows/v10.2.1
759759
with:
760760
docs-source-directory: ${{ inputs.docs-source-directory }}
761761

762762
playwright:
763763
name: Playwright E2E tests
764-
uses: grafana/plugin-ci-workflows/.github/workflows/playwright.yml@main
764+
uses: grafana/plugin-ci-workflows/.github/workflows/playwright.yml@ci-cd-workflows/v10.2.1
765765
if: ${{ inputs.run-playwright == true }}
766766
needs:
767767
- test-and-build
@@ -788,7 +788,7 @@ jobs:
788788

789789
playwright-docker:
790790
name: Plugins - Dockerized Playwright E2E tests
791-
uses: grafana/plugin-ci-workflows/.github/workflows/playwright-docker.yml@main
791+
uses: grafana/plugin-ci-workflows/.github/workflows/playwright-docker.yml@ci-cd-workflows/v10.2.1
792792
if: ${{ inputs.run-playwright-docker == true }}
793793
needs:
794794
- test-and-build

.github/workflows/playwright-docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,6 +187,6 @@ jobs:
187187
if: always()
188188
steps:
189189
- name: Check matrix job status
190-
uses: grafana/plugin-ci-workflows/actions/internal/check-matrix-status@main
190+
uses: grafana/plugin-ci-workflows/actions/internal/check-matrix-status@ci-cd-workflows/v10.2.1
191191
with:
192192
results: ${{ needs.playwright-tests.result }}

.github/workflows/playwright.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ jobs:
153153

154154
- name: Setup
155155
id: setup
156-
uses: grafana/plugin-ci-workflows/actions/internal/plugins/setup@main
156+
uses: grafana/plugin-ci-workflows/actions/internal/plugins/setup@ci-cd-workflows/v10.2.1
157157
with:
158158
plugin-directory: ${{ inputs.plugin-directory }}
159159
node-version: ${{ inputs.node-version }}
@@ -363,6 +363,6 @@ jobs:
363363
if: always()
364364
steps:
365365
- name: Check matrix job status
366-
uses: grafana/plugin-ci-workflows/actions/internal/check-matrix-status@main
366+
uses: grafana/plugin-ci-workflows/actions/internal/check-matrix-status@ci-cd-workflows/v10.2.1
367367
with:
368368
results: ${{ needs.playwright-tests.result }}

examples/base/provisioned-plugin-auto-cd/publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ permissions: {}
3232
jobs:
3333
cd:
3434
name: CD
35-
uses: grafana/plugin-ci-workflows/.github/workflows/cd.yml@ci-cd-workflows/v10.2.0
35+
uses: grafana/plugin-ci-workflows/.github/workflows/cd.yml@ci-cd-workflows/v10.2.1
3636
permissions:
3737
contents: write
3838
pull-requests: read

examples/base/provisioned-plugin-auto-cd/push.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ permissions: {}
1717
jobs:
1818
cd:
1919
name: CI / CD
20-
uses: grafana/plugin-ci-workflows/.github/workflows/cd.yml@ci-cd-workflows/v10.2.0
20+
uses: grafana/plugin-ci-workflows/.github/workflows/cd.yml@ci-cd-workflows/v10.2.1
2121
permissions:
2222
contents: write
2323
pull-requests: read

examples/base/provisioned-plugin-manual-deployment/publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ permissions: {}
3232
jobs:
3333
cd:
3434
name: CD
35-
uses: grafana/plugin-ci-workflows/.github/workflows/cd.yml@ci-cd-workflows/v10.2.0
35+
uses: grafana/plugin-ci-workflows/.github/workflows/cd.yml@ci-cd-workflows/v10.2.1
3636
permissions:
3737
contents: write
3838
pull-requests: read

examples/base/provisioned-plugin-manual-deployment/push.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ permissions: {}
1717
jobs:
1818
ci:
1919
name: CI
20-
uses: grafana/plugin-ci-workflows/.github/workflows/ci.yml@ci-cd-workflows/v10.2.0
20+
uses: grafana/plugin-ci-workflows/.github/workflows/ci.yml@ci-cd-workflows/v10.2.1
2121
permissions:
2222
contents: read
2323
id-token: write

examples/base/simple/publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ permissions: {}
3232
jobs:
3333
cd:
3434
name: CD
35-
uses: grafana/plugin-ci-workflows/.github/workflows/cd.yml@ci-cd-workflows/v10.2.0
35+
uses: grafana/plugin-ci-workflows/.github/workflows/cd.yml@ci-cd-workflows/v10.2.1
3636
permissions:
3737
contents: write
3838
pull-requests: read

examples/base/simple/push.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ permissions: {}
1717
jobs:
1818
ci:
1919
name: CI
20-
uses: grafana/plugin-ci-workflows/.github/workflows/ci.yml@ci-cd-workflows/v10.2.0
20+
uses: grafana/plugin-ci-workflows/.github/workflows/ci.yml@ci-cd-workflows/v10.2.1
2121
permissions:
2222
contents: read
2323
id-token: write

0 commit comments

Comments
 (0)