Skip to content

chore(deps): update henrygd/beszel-agent docker tag to v0.13.0 #6

chore(deps): update henrygd/beszel-agent docker tag to v0.13.0

chore(deps): update henrygd/beszel-agent docker tag to v0.13.0 #6

Workflow file for this run

name: CI
on:
pull_request:
types: [opened, synchronize, reopened]
push:
branches: [ main ]
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: '3.x'
- name: Install yamllint
run: pip install yamllint
- name: Find and run yamllint on compose files
run: |
set -euo pipefail
files=$(git ls-files "**/docker-compose*.yml" "**/docker-compose*.yaml" || true)
if [ -n "$files" ]; then
echo "$files" | xargs yamllint
else
echo "No compose files found"
fi
trivy-scan:
needs: [lint]
name: Filesystem scan
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Trivy scan
uses: aquasecurity/trivy-action@0.33.1
with:
format: 'table'
scan-type: 'fs'
severity: 'HIGH,CRITICAL'
exit-code: '1'
ignore-unfixed: true