Skip to content

Commit 2eb0793

Browse files
DonNicoJsarmsnyder
andauthored
Apply suggestions from code review
Co-authored-by: Adam Snyder <[email protected]>
1 parent 5341e72 commit 2eb0793

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

.github/workflows/pr-acceptance-ce.yml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,7 @@ jobs:
2222
outputs:
2323
go-version: ${{ steps.go-version.outputs.go-version }}
2424
steps:
25-
# Check out the pull request code (as opposed to the target project).
2625
- uses: actions/checkout@v2
27-
with:
28-
ref: ${{ github.event.pull_request.head.sha }}
2926
# Read the .go-version file and output it for other jobs to use.
3027
- id: go-version
3128
run: echo "::set-output name=go-version::$(cat .go-version)"
@@ -38,15 +35,11 @@ jobs:
3835
- uses: actions/setup-go@v2
3936
with:
4037
go-version: ${{ needs.go-version.outputs.go-version }}
41-
# Check out the pull request code (as opposed to the target project).
4238
- uses: actions/checkout@v2
43-
with:
44-
ref: ${{ github.event.pull_request.head.sha }}
4539
# Cache the Go modules.
4640
- uses: actions/cache@v2
4741
with:
4842
path: ~/go/pkg/mod
4943
key: ${{ github.job }}-${{ runner.os }}-go${{ env.GO_VERSION }}-${{ hashFiles('**/go.sum', 'GNUMakefile') }}
50-
# CAUTION: EXECUTING UNTRUSTED CODE.
5144
- run: make testacc-up
5245
- run: make testacc

0 commit comments

Comments
 (0)