Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/app-basic/.config/.cprc.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"version": "6.1.5"
"version": "6.1.8"
}
2 changes: 1 addition & 1 deletion examples/app-basic/.config/docker-compose-base.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ services:
context: .
args:
grafana_image: ${GRAFANA_IMAGE:-grafana-enterprise}
grafana_version: ${GRAFANA_VERSION:-12.2.0}
grafana_version: ${GRAFANA_VERSION:-12.2.1}
development: ${DEVELOPMENT:-false}
anonymous_auth_enabled: ${ANONYMOUS_AUTH_ENABLED:-true}
ports:
Expand Down
2 changes: 1 addition & 1 deletion examples/app-basic/.github/workflows/bundle-stats.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ jobs:
with:
persist-credentials: false

- uses: grafana/plugin-actions/[email protected]
- uses: grafana/plugin-actions/bundle-size@bundle-size/v1.0.2
8 changes: 4 additions & 4 deletions examples/app-basic/.github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ jobs:

- name: Resolve Grafana E2E versions
id: resolve-versions
uses: grafana/plugin-actions/[email protected]
uses: grafana/plugin-actions/e2e-version@e2e-version/v1.1.2

playwright-tests:
needs: [resolve-versions, build]
Expand Down Expand Up @@ -186,7 +186,7 @@ jobs:
ANONYMOUS_AUTH_ENABLED=false DEVELOPMENT=false GRAFANA_VERSION=${{ matrix.GRAFANA_IMAGE.VERSION }} GRAFANA_IMAGE=${{ matrix.GRAFANA_IMAGE.NAME }} docker compose up -d

- name: Wait for grafana server
uses: grafana/plugin-actions/[email protected]
uses: grafana/plugin-actions/wait-for-grafana@wait-for-grafana/v1.0.2
with:
url: http://localhost:3000/login

Expand All @@ -198,7 +198,7 @@ jobs:
run: npm run e2e

- name: Upload e2e test summary
uses: grafana/plugin-actions/playwright-gh-pages/[email protected]
uses: grafana/plugin-actions/playwright-gh-pages/upload-report-artifacts@upload-report-artifacts/v1.0.1
if: ${{ always() && !cancelled() }}
with:
upload-report: false
Expand Down Expand Up @@ -236,6 +236,6 @@ jobs:
# required for playwright-gh-pages
persist-credentials: true
- name: Publish report
uses: grafana/plugin-actions/playwright-gh-pages/[email protected]
uses: grafana/plugin-actions/playwright-gh-pages/deploy-report-pages@deploy-report-pages/v1.0.1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
22 changes: 8 additions & 14 deletions examples/app-basic/.github/workflows/cp-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,22 +5,16 @@ on:
schedule:
- cron: '0 0 1 * *' # run once a month on the 1st day

# To use the default github token with the following elevated permissions make sure to check:
# **Allow GitHub Actions to create and approve pull requests** in https://github.com/ORG_NAME/REPO_NAME/settings/actions.
# Alternatively create a fine-grained personal access token for your repository with
# `contents: read and write` and `pull requests: read and write` and pass it to the action.

permissions:
contents: write
pull-requests: write
# To use this workflow please create a fine-grained personal access token for your repository with:
# `contents: read and write`
# `pull requests: read and write`
# `workflows: read and write`

jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: grafana/plugin-actions/[email protected]
# Uncomment to use a fine-grained personal access token instead of default github token
# (For more info on how to generate the token see https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/managing-your-personal-access-tokens)
# with:
# Make sure to save the token in your repository secrets
# token: $
- uses: grafana/plugin-actions/create-plugin-update@create-plugin-update/v1.1.0
with:
# Make sure to save the token in your repository secrets as `GH_PAT_TOKEN`
token: ${{ secrets.GH_PAT_TOKEN }}
2 changes: 1 addition & 1 deletion examples/app-basic/.github/workflows/is-compatible.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
echo "modulets=${MODULETS}" >> $GITHUB_OUTPUT

- name: Compatibility check
uses: grafana/plugin-actions/[email protected]
uses: grafana/plugin-actions/is-compatible@is-compatible/v1.0.2
with:
module: ${{ steps.find-module-ts.outputs.modulets }}
comment-pr: 'no'
Expand Down
2 changes: 1 addition & 1 deletion examples/app-basic/.github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
with:
persist-credentials: false

- uses: grafana/plugin-actions/[email protected]
- uses: grafana/plugin-actions/build-plugin@build-plugin/v1.0.2
# Uncomment to enable plugin signing
# (For more info on how to generate the access policy token see https://grafana.com/developers/plugin-tools/publish-a-plugin/sign-a-plugin#generate-an-access-policy-token)
#with:
Expand Down
Loading