deps: update pkcs11 and pkcs11key (#8692) #282
This file contains hidden or 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
| # This GitHub Action runs only on pushes to main or a hotfix branch. It can | |
| # be used by tag protection rules to ensure that tags may only be pushed if | |
| # their corresponding commit was first pushed to one of those branches. | |
| name: Merged to main (or hotfix) | |
| permissions: | |
| contents: read | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - release-branch-* | |
| jobs: | |
| merged-to-main: | |
| name: Merged to main (or hotfix) | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| persist-credentials: false |