Skip to content

Commit db5a5d1

Browse files
authored
Merge branch 'main' into feat/actions-svc-2
2 parents e911976 + c97a315 commit db5a5d1

File tree

2 files changed

+13
-7
lines changed

2 files changed

+13
-7
lines changed

.github/workflows/checks.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: 'Checks'
1+
name: "Checks"
22

33
env:
44
IS_RELEASE_BRANCH: ${{ startsWith(github.head_ref, 'release-please-') }}
@@ -101,7 +101,7 @@ jobs:
101101
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
102102
- uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b #v5.4.0
103103
with:
104-
go-version-file: 'service/go.mod'
104+
go-version-file: "service/go.mod"
105105
check-latest: false
106106
cache-dependency-path: |
107107
service/go.sum
@@ -173,7 +173,7 @@ jobs:
173173
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
174174
- uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b #v5.4.0
175175
with:
176-
go-version-file: 'service/go.mod'
176+
go-version-file: "service/go.mod"
177177
check-latest: false
178178
cache-dependency-path: |
179179
service/go.sum
@@ -289,7 +289,7 @@ jobs:
289289
platform-ref: ${{ github.event.pull_request.head.sha || github.sha }}
290290
- uses: opentdf/otdfctl/e2e@main
291291
with:
292-
otdfctl-ref: 'main'
292+
otdfctl-ref: "main"
293293

294294
buflint:
295295
name: Protocol Buffer Lint and Gencode Up-to-date check
@@ -305,10 +305,10 @@ jobs:
305305
- uses: bufbuild/buf-breaking-action@c57b3d842a5c3f3b454756ef65305a50a587c5ba
306306
with:
307307
input: service
308-
against: 'https://github.com/opentdf/platform.git#branch=main,subdir=service'
308+
against: "https://github.com/opentdf/platform.git#branch=main,subdir=service"
309309
- uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b #v5.4.0
310310
with:
311-
go-version-file: 'service/go.mod'
311+
go-version-file: "service/go.mod"
312312
check-latest: false
313313
cache-dependency-path: |
314314
service/go.sum
@@ -353,7 +353,7 @@ jobs:
353353
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
354354
- uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b #v5.4.0
355355
with:
356-
go-version-file: 'service/go.mod'
356+
go-version-file: "service/go.mod"
357357
check-latest: false
358358
cache: false
359359
- name: check service licenses

test/start-up-with-containers/action.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,12 @@ runs:
3232
# use a distinct path to avoid conflicts
3333
path: otdf-test-platform
3434
ref: ${{ inputs.platform-ref }}
35+
persist-credentials: false
36+
- name: Download latest init-temp-keys.sh and docker-compose.yaml
37+
shell: bash
38+
run: |
39+
curl https://raw.githubusercontent.com/opentdf/platform/refs/tags/keycloak-image-fix/.github/scripts/init-temp-keys.sh > otdf-test-platform/.github/scripts/init-temp-keys.sh
40+
curl https://raw.githubusercontent.com/opentdf/platform/refs/tags/keycloak-image-fix/docker-compose.yaml > otdf-test-platform/docker-compose.yaml
3541
- name: Set up go (platform's go version)
3642
id: setup-go
3743
uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b #v5.4.0

0 commit comments

Comments
 (0)