-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Marco Franssen <[email protected]>
- Loading branch information
1 parent
e86ba86
commit f21a81f
Showing
3 changed files
with
13 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
export COSIGN_PASSWORD="$(cat /Volumes/Keybase/team/sssc/spiffe-vault/cosign-password.txt)" | ||
export GITHUB_TOKEN="$(gh auth token)" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,15 +17,15 @@ jobs: | |
name: Continuous Integration | ||
|
||
steps: | ||
- name: Check out code | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up Go | ||
uses: actions/[email protected] | ||
with: | ||
go-version: 1.18 | ||
go-version-file: go.mod | ||
check-latest: true | ||
|
||
- name: Check out code | ||
uses: actions/checkout@v3 | ||
|
||
- name: Cache Go modules | ||
uses: actions/[email protected] | ||
id: go-mod-cache | ||
|
@@ -74,22 +74,22 @@ jobs: | |
container_repos: ${{ steps.container_info.outputs.container_repos }} | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Set up Go | ||
uses: actions/[email protected] | ||
with: | ||
go-version: 1.18 | ||
go-version-file: go.mod | ||
check-latest: true | ||
|
||
- name: Install cosign | ||
uses: sigstore/[email protected] | ||
with: | ||
cosign-release: 'v2.1.1' | ||
|
||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Login to container registries | ||
if: startsWith(github.ref, 'refs/tags/') | ||
run: | | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
module github.com/philips-labs/spiffe-vault | ||
|
||
go 1.18 | ||
go 1.21 | ||
|
||
require ( | ||
github.com/hashicorp/vault/api v1.9.2 | ||
|