From 9f212d11d0ac9c38ada62a7db830844bb9b02905 Mon Sep 17 00:00:00 2001 From: Timur Olzhabayev Date: Wed, 23 Jul 2025 16:00:12 +0200 Subject: [PATCH] Chore: bump github action version (#108522) bump github action version --- .github/workflows/issue-opened.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/issue-opened.yml b/.github/workflows/issue-opened.yml index 11aec26b87f..80b853d0c69 100644 --- a/.github/workflows/issue-opened.yml +++ b/.github/workflows/issue-opened.yml @@ -135,13 +135,14 @@ jobs: GITHUB_APP_PRIVATE_KEY=plugins_platform_issue_triager_github_bot:app_pem - name: Generate token id: generate_token - uses: actions/create-github-app-token@3ff1caaa28b64c9cc276ce0a02e2ff584f3900c5 # v2.0.2 + uses: actions/create-github-app-token@df432ceedc7162793a195dd1713ff69aefc7379e # v2.0.6 with: app-id: ${{ env.GITHUB_APP_ID }} private-key: ${{ env.GITHUB_APP_PRIVATE_KEY }} permission-members: read - name: Check if member of grafana org id: check-if-grafana-org-member + continue-on-error: true run: gh api https://api.github.com/orgs/grafana/members/${{ env.ACTOR }} >/dev/null 2>&1 && echo "is_grafana_org_member=true" >> "$GITHUB_OUTPUT" env: GH_TOKEN: ${{ steps.generate_token.outputs.token }}