Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -137,8 +137,7 @@ jobs:
if: "!startsWith(github.ref, 'refs/tags/v')"

integration-tests:
# if: "!startsWith(github.ref, 'refs/tags/v')"
if: false
if: "!startsWith(github.ref, 'refs/tags/v')"
needs: deploy-ec2
runs-on: ubuntu-latest
strategy:
Expand Down Expand Up @@ -220,7 +219,6 @@ jobs:
path: ./integration_test/coverage/

report-coverage:
if: false
needs: integration-tests
runs-on: ubuntu-latest
steps:
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.21-bullseye AS builder
FROM golang:1.24-bullseye AS builder
RUN apt-get update && apt-get install
ADD . /signatory
WORKDIR /signatory
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ Explore detailed documentation for various components of Signatory:

### Other
- [JWT Authentication](https://signatory.io/docs/jwt)
- [Proof of Possession (POP)](https://signatory.io/docs/proof_of_possession)
- [Remote Policy Configuration](https://signatory.io/docs/remote_policy)
- [Signatory Architecture](https://signatory.io/docs/architecture)
- [Glossary](https://signatory.io/docs/glossary)
Expand Down
13 changes: 7 additions & 6 deletions cmd/commands/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,14 @@ import (
)

const listTemplateSrc = `{{range . -}}
Public Key Hash: {{.Hash}}
Reference: {{keyRef .KeyReference}}
Vault: {{.Vault.Name}}
Active: {{.Active}}
Public Key Hash: {{.Hash}}
Reference: {{keyRef .KeyReference}}
Vault: {{.Vault.Name}}
Active: {{.Active}}
{{with .Policy -}}
Allowed Requests: {{.AllowedRequests}}
Allowed Operations: {{.AllowedOps}}
Allowed Requests: {{.AllowedRequests}}
Allowed Operations: {{.AllowedOps}}
Allow Proof of Possession: {{.AllowProofOfPossession}}
{{end}}
{{end -}}
`
Expand Down
Loading
Loading