Skip to content

Commit

Permalink
Fix checkouts
Browse files Browse the repository at this point in the history
  • Loading branch information
VOID404 committed Sep 5, 2024
1 parent 54568d1 commit 1205c07
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
1 change: 1 addition & 0 deletions .github/workflows/acm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ jobs:
uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
repository: ${{ github.repository}}
- name: Set up go environment
uses: actions/setup-go@v4
with:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/cra.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ jobs:
uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
repository: ${{ github.repository}}
- name: Detect files
id: detect-files
uses: tj-actions/changed-files@d6babd6899969df1a11d14c368283ea4436bca78
Expand All @@ -66,6 +67,7 @@ jobs:
uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
repository: ${{ github.repository}}
- name: Set up go environment
uses: actions/setup-go@v5
with:
Expand Down
13 changes: 7 additions & 6 deletions .github/workflows/reusable-k3d-agent-test.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
name: Run compass-runtime-agent integration tests on k3d
name: Run compass-runtime-agent integration tests on k3d
on:
workflow_call:
inputs:
k3d-version:
required: true
type: string
default: v5.6.0
k3d-version:
required: true
type: string
default: v5.6.0
secrets:
compass-host:
required: true
Expand All @@ -23,6 +23,7 @@ jobs:
uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}
repository: ${{ github.repository}}
- name: Set up go environment
uses: actions/setup-go@v4
with:
Expand All @@ -36,7 +37,7 @@ jobs:
env:
COMPASS_CLIENT_ID: ${{ secrets.compass-client-id }}
COMPASS_CLIENT_SECRET: ${{ secrets.compass-client-secret }}
COMPASS_HOST: ${{ secrets.compass-host }}
COMPASS_HOST: ${{ secrets.compass-host }}
run: make -C tests/hack/ci k3d-agent-tests
- name: archive-logs
if: always()
Expand Down

0 comments on commit 1205c07

Please sign in to comment.