Bump actions/checkout from 5.0.0 to 6.0.1 #198
Workflow file for this run
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
| name: Test | |
| on: | |
| pull_request: | |
| push: | |
| schedule: [{ cron: "0 0 10 * *" }] # monthly https://crontab.guru/#0_0_10_*_* | |
| workflow_dispatch: | |
| permissions: {} | |
| jobs: | |
| test: | |
| uses: ./.github/workflows/test.yml | |
| with: { npm: false } | |
| permissions: | |
| contents: read | |
| packages: read | |
| id-token: write | |
| security-events: write | |
| statuses: write | |
| super-lint: | |
| permissions: { contents: read, packages: read, statuses: write } | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| repo: | |
| - actions | |
| - homebrew-nodenv | |
| - jetbrains-npm | |
| # - node-build | |
| - node-build-prerelease | |
| - node-build-update-defs | |
| # - nodenv | |
| # - nodenv-aliases | |
| - nodenv-default-packages | |
| - nodenv-each | |
| - nodenv-env | |
| - nodenv-installer | |
| - nodenv-man | |
| - nodenv-npm-migrate | |
| - nodenv-nvmrc | |
| # - nodenv-package-json-engine | |
| - nodenv-package-rehash | |
| # - nodenv-update | |
| - nodenv-vars | |
| steps: | |
| - uses: step-security/harden-runner@95d9a5deda9de15063e7595e9719c11c38c90ae2 # v2.13.2 | |
| with: { egress-policy: audit } | |
| - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| with: | |
| repository: nodenv/${{ matrix.repo }} | |
| persist-credentials: false | |
| - uses: super-linter/super-linter/slim@47984f49b4e87383eed97890fe2dca6063bbd9c3 # v8.3.1 | |
| env: | |
| ### RUN_LOCAL+USE_FIND_ALGORITHM to workaround superlinter | |
| RUN_LOCAL: true | |
| USE_FIND_ALGORITHM: true | |
| ### | |
| GITHUB_TOKEN: ${{ github.token }} | |
| BASH_EXEC_IGNORE_LIBRARIES: true # superlinter bug #5731 | |
| FILTER_REGEX_EXCLUDE: node_modules | |
| VALIDATE_BIOME_FORMAT: false # conflicts with prettier | |
| VALIDATE_BIOME_LINT: false # conflicts with prettier | |
| VALIDATE_GIT_COMMITLINT: false # commitlint is bad | |
| VALIDATE_JSCPD: false # too prone to false-positives |