mirror of
https://github.com/kemko/nomad.git
synced 2026-01-04 17:35:43 +03:00
Trusted Supply Chain Component Registry (TSCCR) enforcement starts Monday and an internal report shows our semgrep action is pinned to a version that's not currently permitted. Update all the action versions to whatever's the new hotness to maximum the time-to-live on these until we have automated pinning setup. Also version bumps our chromedriver action, which randomly broke upstream today.
16 lines
450 B
YAML
16 lines
450 B
YAML
# If the repository is public, be sure to change to GitHub hosted runners
|
|
name: Lint GitHub Actions Workflows
|
|
on:
|
|
push:
|
|
paths:
|
|
- '.github/workflows/**'
|
|
permissions:
|
|
contents: read
|
|
jobs:
|
|
actionlint:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
|
|
- name: "Check workflow files"
|
|
uses: docker://docker.mirror.hashicorp.services/rhysd/actionlint:latest
|