chore(deps): bump elliptic from 6.5.7 to 6.6.0 #9645
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: 📝 Check changesets | |
on: | |
pull_request: | |
types: | |
[ | |
opened, | |
synchronize, | |
reopened, | |
labeled, | |
unlabeled, | |
milestoned, | |
demilestoned, | |
] | |
# Cancel in-progress runs of this workflow. | |
# See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#example-only-cancel-in-progress-jobs-or-runs-for-the-current-workflow. | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
permissions: {} | |
jobs: | |
check-changesets: | |
name: 📝 Check changesets | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | |
- name: Set up job | |
uses: ./.github/actions/set-up-job | |
with: | |
set-up-yarn-cache: false | |
yarn-install-directory: ./.github/actions/check_changesets | |
build: false | |
- name: Check changesets | |
uses: ./.github/actions/check_changesets | |
with: | |
labels: '{ "labels": ${{ toJSON(github.event.pull_request.labels) }} }' |