⬆️ (deps): Update chromaui/action action to v13 #20
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: 🔒️ Security hardening (Github Actions workflows) | |
on: | |
merge_group: {} | |
pull_request: | |
types: [opened, synchronize] | |
paths: [.github/workflows/**] | |
permissions: {} | |
jobs: | |
ci_harden_security: | |
name: 🔒️ Github Action security hardening | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
steps: | |
- name: ⬇️ Checkout repository | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: 📄 Lint Github Actions | |
run: | | |
curl -O https://raw.githubusercontent.com/rhysd/actionlint/4f6274a8e0f4f4d2057aa9ae07660f61aa29c5f3/.github/actionlint-matcher.json | |
echo "::add-matcher::actionlint-matcher.json" | |
bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/4f6274a8e0f4f4d2057aa9ae07660f61aa29c5f3/scripts/download-actionlint.bash) | |
./actionlint -color | |
- name: ✅ Ensure SHA pinned actions | |
uses: zgosalvez/github-actions-ensure-sha-pinned-actions@fc87bb5b5a97953d987372e74478de634726b3e5 # v3.0.25 |