Skip to content

Commit d8e8b53

Browse files
committed
[DRAFT] Fix checkout step
1 parent 6d5b1d8 commit d8e8b53

2 files changed

Lines changed: 10 additions & 5 deletions

File tree

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,9 @@
11
name: Set up Go test environment
2-
description: Checks out code, sets up Go from go.mod, and installs Ginkgo.
2+
description: Sets up Go from go.mod and installs Ginkgo.
33

44
runs:
55
using: 'composite'
66
steps:
7-
- name: Checkout code
8-
uses: actions/checkout@v6
9-
107
- name: Set up Go
118
uses: actions/setup-go@v6
129
with:
@@ -15,4 +12,3 @@ runs:
1512
- name: Install Ginkgo
1613
shell: bash
1714
run: go install github.com/onsi/ginkgo/v2/ginkgo@latest
18-

.github/workflows/s3-integration.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,9 @@ jobs:
3131
STACK_NAME: s3cli-iam
3232
S3_ENDPOINT_HOST: https://s3.amazonaws.com
3333
steps:
34+
- name: Checkout code
35+
uses: actions/checkout@v6
36+
3437
- name: Set up test environment
3538
uses: ./.github/actions/go-test-bootstrap
3639

@@ -115,6 +118,9 @@ jobs:
115118
label_filter: 'aws && esc'
116119
use_esc_credentials: true
117120
steps:
121+
- name: Checkout code
122+
uses: actions/checkout@v6
123+
118124
- name: Set up test environment
119125
uses: ./.github/actions/go-test-bootstrap
120126

@@ -155,6 +161,9 @@ jobs:
155161
github.event_name == 'workflow_dispatch' ||
156162
(github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository && github.actor != 'dependabot[bot]')
157163
steps:
164+
- name: Checkout code
165+
uses: actions/checkout@v6
166+
158167
- name: Set up test environment
159168
uses: ./.github/actions/go-test-bootstrap
160169

0 commit comments

Comments
 (0)