Skip to content

chore(deps): update actions/checkout digest to eef6144 #254

chore(deps): update actions/checkout digest to eef6144

chore(deps): update actions/checkout digest to eef6144 #254

Workflow file for this run

name: E2E
on:
push:
paths-ignore:
- docs/**
# schedule:
# - cron: 37 10 * * 1-5 # At 10:37 on every day-of-week from Monday through Friday
jobs:
test-e2e:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4
- name: Determine Go version from go.mod
run: echo "GO_VERSION=$(go mod edit -json | jq -r .Go)" >> $GITHUB_ENV
- uses: actions/setup-go@v4
with:
go-version: ${{ env.GO_VERSION }}
- uses: actions/cache@v3
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Install prerequisites
run: make crossplane-setup registry-setup
- name: Run tests
run: make test-e2e
- name: Cleanup
run: make clean
if: always()