Bump github.com/ProtonMail/go-crypto from 0.0.0-20230828082145-3c4c8a2d2371 to 1.1.0-alpha.3-proton #239
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: PR Checks | |
on: | |
pull_request_target: | |
types: | |
- opened | |
- reopened | |
- synchronize | |
- ready_for_review | |
- labeled | |
- unlabeled | |
- edited | |
issues: | |
types: | |
- milestoned | |
- demilestoned | |
concurrency: | |
group: pr-checks-${{ github.event.number }} | |
permissions: | |
statuses: write | |
checks: write | |
actions: write | |
contents: read | |
pull-requests: read | |
jobs: | |
main: | |
runs-on: ubuntu-latest | |
if: github.event.pull_request.draft == false | |
steps: | |
- name: Checkout Actions | |
uses: actions/checkout@v4 | |
with: | |
repository: "grafana/grafana-github-actions" | |
path: ./actions | |
ref: main | |
- name: Install Actions | |
run: npm install --production --prefix ./actions | |
- name: Run PR Checks | |
uses: ./actions/pr-checks | |
with: | |
token: ${{secrets.GITHUB_TOKEN}} | |
configPath: pr-checks |