fix(deps): update module sigs.k8s.io/controller-runtime to v0.22.4 - autoclosed #2076
Workflow file for this run
This file contains hidden or 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
| name: Tests | |
| on: | |
| - pull_request | |
| jobs: | |
| test: | |
| runs-on: self-hosted | |
| 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@v4 | |
| - 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: Configure pull-through-cache | |
| run: | | |
| mkdir ~/.earthly | |
| cat <<EOF > ~/.earthly/config.yml | |
| global: | |
| buildkit_additional_config: | | |
| [registry."docker.io"] | |
| mirrors = ["yawol-registry-docker-registry.yawol-registry.svc:5000"] | |
| [registry."yawol-registry-docker-registry.yawol-registry.svc:5000"] | |
| http = true | |
| insecure = true | |
| EOF | |
| - name: Earthly version | |
| run: earthly --version | |
| - name: Run Snyk | |
| if: ${{ env.SNYK_TOKEN }} | |
| run: earthly --ci --secret SNYK_TOKEN +snyk | |
| - name: Run Tests | |
| run: earthly --ci +all-except-snyk |