Skip to content

Bump step-security/harden-runner from 2.6.0 to 2.6.1 (#51) #87

Bump step-security/harden-runner from 2.6.0 to 2.6.1 (#51)

Bump step-security/harden-runner from 2.6.0 to 2.6.1 (#51) #87

Workflow file for this run

name: C/C++ CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
defaults:
run:
shell: bash
jobs:
ubuntu-build:
name: Ubuntu Build
runs-on: ubuntu-latest
steps:
- name: Harden Runner
uses: step-security/harden-runner@eb238b55efaa70779f274895e782ed17c84f2895 # v2.6.1
with:
egress-policy: audit
- name: Checkout repository
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Setup Python with Meson
uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236 # v4.7.1
with:
python-version: '>=3.10.12'
check-latest: true
cache: 'pip'
- run: pip install -r requirements.txt
- name: Get libmozjs
run: |
sudo apt-get update -y &&
sudo apt-get install -y libmozjs-102-dev
- name: Meson build
run: |
meson build && ninja -C build