Skip to content

fix(deps): update kubernetes monorepo to v0.36.2 #2252

fix(deps): update kubernetes monorepo to v0.36.2

fix(deps): update kubernetes monorepo to v0.36.2 #2252

Workflow file for this run

name: Tests
on:
- pull_request
jobs:
test:
runs-on: ubuntu-latest
permissions:
contents: read
env:
# is an empty string if it doesn't exists
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
FORCE_COLOR: 1
steps:
- uses: actions/checkout@v6
- name: Put back the git branch into git (Earthly uses it for tagging)
run: |
branch=""
if [ -n "$GITHUB_HEAD_REF" ]; then
branch="$GITHUB_HEAD_REF"
else
branch="${GITHUB_REF##*/}"
fi
git checkout -b "$branch" || true
- name: Install earthly
run: "sudo /bin/sh -c 'curl -o /usr/local/bin/earthly -L https://github.com/earthly/earthly/releases/download/v0.8.16/earthly-linux-amd64 && chmod +x /usr/local/bin/earthly'"
- name: Earthly version
run: earthly --version
- name: Run Tests
run: earthly --ci +all