Skip to content

chore(deps): update actions/checkout digest to 8ade135 #945

chore(deps): update actions/checkout digest to 8ade135

chore(deps): update actions/checkout digest to 8ade135 #945

Workflow file for this run

---
name: Test
on:
workflow_call:
workflow_dispatch:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4
with:
fetch-depth: 0
- name: Checkout master
run: git checkout master && git checkout - && git rev-parse HEAD
- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "[email protected]"
- name: Lint
run: make lint
- name: Test
run: make test
- name: Track docs
run: |
if ! [ -z "$(git diff traefik/Chart.yaml | grep version:)" ]; then
make docs
if ! [ -z "$(git status | grep traefik/VALUES.md)" ]; then
echo "Traefik values have changed. Run make docs"
exit 1
fi
fi