Skip to content

chore(deps): update actions/dependency-review-action action to v4.4.0 #10567

chore(deps): update actions/dependency-review-action action to v4.4.0

chore(deps): update actions/dependency-review-action action to v4.4.0 #10567

Workflow file for this run

---
name: super-linter
on:
pull_request:
branches: [master]
merge_group:
workflow_dispatch:
permissions:
contents: read
packages: read
statuses: write
jobs:
super-linter:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
with:
fetch-depth: 0
- uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4
with:
node-version-file: .node-version
cache: npm
- run: npm ci
- run: npm ci
working-directory: test/e2e
- run: bash "${GITHUB_WORKSPACE}/scripts/super_linter/super_linter/set_path.sh"
- name: Super-Linter
uses: super-linter/super-linter/slim@b92721f792f381cedc002ecdbb9847a15ece5bb8 # v7.1.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
LINTER_RULES_PATH: .
# Go modulesを使っているため、こちらはfalseにする
VALIDATE_GO: false
ESLINT_USE_FLAT_CONFIG: false
JAVASCRIPT_DEFAULT_STYLE: prettier
VALIDATE_JAVASCRIPT_STANDARD: false
TYPESCRIPT_DEFAULT_STYLE: prettier
VALIDATE_TYPESCRIPT_STANDARD: false
concurrency:
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }}
cancel-in-progress: true