[StepSecurity] Apply security best practices #16252
Workflow file for this run
This file contains 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
# Check our codebase for defective programming patterns | |
name: Coccinelle | |
"on": | |
pull_request: | |
push: | |
branches: | |
- main | |
- prerelease_test | |
permissions: | |
contents: read | |
jobs: | |
coccinelle: | |
name: Coccinelle | |
# coccinelle version in ubuntu-latest (20.04) is too old so we run | |
# this in jammy (22.04) | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@f086349bfa2bd1361f7909c78558e816508cdc10 # v2.8.0 | |
with: | |
egress-policy: audit | |
- name: Install Dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get -y install coccinelle | |
- name: Checkout TimescaleDB | |
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6 | |
- name: Run coccinelle | |
run: | | |
./scripts/coccinelle.sh | |
- name: Save coccinelle.diff | |
if: always() | |
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3 | |
with: | |
name: coccinelle.diff | |
path: coccinelle.diff | |