feat(rbac)!: migrate to new backend and remove deprecations (#2225) #202
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: Regen yarn.lock | |
on: | |
workflow_dispatch: | |
inputs: | |
node-version: | |
description: Node.js version | |
required: true | |
default: '20' | |
push: | |
branches: | |
# since we use multi-semantic-release, which assumes that all plugins in the 1.1.x branch | |
# are versioned < 1.2, we can only release from main branch. See RHIDP-1720 for more info | |
- main | |
concurrency: | |
group: yarn-lock | |
cancel-in-progress: true | |
jobs: | |
test: | |
name: Test yarn.lock | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4 | |
with: | |
node-version: ${{ inputs.node-version }} | |
cache: 'yarn' | |
- name: Setup local Turbo cache | |
uses: dtinth/setup-github-actions-caching-for-turbo@cc723b4600e40a6b8815b65701d8614b91e2669e # v1 | |
- name: Install dependencies | |
shell: bash | |
run: | | |
yarn install | |
- name: Generate token | |
id: generate-token | |
uses: actions/create-github-app-token@31c86eb3b33c9b601a1f60f98dcbfd1d70f379b4 # v1.10.3 | |
with: | |
app-id: ${{ vars.JANUS_IDP_GITHUB_APP_ID }} | |
private-key: ${{ secrets.JANUS_IDP_GITHUB_APP_PRIVATE_KEY }} | |
- name: Regen yarn.lock | |
uses: ./.github/actions/yarn-lock | |
env: | |
GITHUB_TOKEN: ${{ steps.generate-token.outputs.token }} |