Skip to content

chore(deps-dev): Bump @storyblok/js from 2.3.0 to 3.0.0 #41

chore(deps-dev): Bump @storyblok/js from 2.3.0 to 3.0.0

chore(deps-dev): Bump @storyblok/js from 2.3.0 to 3.0.0 #41

Workflow file for this run

# By default this workflow will be running for PRs (rapid scans) and on push to main branch (full scan)
on:
pull_request_target:
types: [labeled]
pull_request:
branches: [main]
push:
branches: [main]
jobs:
sca-full:
runs-on: sca
if: github.event_name == 'push'
steps:
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 #v4.1.1
# Checking out SCA composite action
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 #v4.1.1
with:
repository: NordSecurity/sca-configs
ref: main
ssh-key: ${{ secrets.SCA_ACTION_KEY }}
path: .github/workflows/sca
# Checking out only SCA action and composite project configuration action
sparse-checkout: |
base/sca-action
SCA/nordsecurity-storyblok-rich-text-astro-renderer-sca-action
- uses: ./.github/workflows/sca/SCA/nordsecurity-storyblok-rich-text-astro-renderer-sca-action
with:
SCA_URL: ${{ secrets.SCA_URL }}
SCA_API_TOKEN: ${{ secrets.SCA_API_TOKEN }}
SCA_FULL_SCAN: true
UNC_ACTION_KEY: ${{ secrets.UNC_ACTION_KEY }}
sca-rapid:
runs-on: sca
if: |
(
github.event_name == 'pull_request' &&
github.event.pull_request.head.repo.full_name == github.event.pull_request.base.repo.full_name
) ||
(
github.event_name == 'pull_request_target' &&
github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name &&
github.event.label.name == 'security scan'
)
steps:
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 #v4.1.1
# Checking out SCA composite action
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 #v4.1.1
with:
repository: NordSecurity/sca-configs
ref: main
ssh-key: ${{ secrets.SCA_ACTION_KEY }}
path: .github/workflows/sca
# Checking out only SCA action and composite project configuration action
sparse-checkout: |
base/sca-action
SCA/nordsecurity-storyblok-rich-text-astro-renderer-sca-action
- uses: ./.github/workflows/sca/SCA/nordsecurity-storyblok-rich-text-astro-renderer-sca-action
with:
SCA_URL: ${{ secrets.SCA_URL }}
SCA_API_TOKEN: ${{ secrets.SCA_API_TOKEN }}
SCA_FULL_SCAN: false
UNC_ACTION_KEY: ${{ secrets.UNC_ACTION_KEY }}