Skip to content

Commit

Permalink
fix no new variables err
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonPowr committed Nov 28, 2024
1 parent 7e9f205 commit 431116b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .tekton/gitsign-pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ spec:
- name: go_test_command
value: go test $(go list ./... | grep -v github.com/sigstore/gitsign/pkg/version)
- name: go_base_image
value: brew.registry.redhat.io/rh-osbs/openshift-golang-builder@sha256:b4242f87696cf168b1fc733a969ef60ee53716dd3c551b02303d76f9d42a53d7
value: brew.registry.redhat.io/rh-osbs/openshift-golang-builder@sha256:356986205e66dcc03ef9a9fef5a7a13d6d59c29efacf1d971f9224c678932cf0
taskRunSpecs:
- pipelineTaskName: run-unit-test
serviceAccountName: appstudio-pipeline
Expand Down
2 changes: 1 addition & 1 deletion .tekton/gitsign-push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ spec:
- name: go_test_command
value: go test $(go list ./... | grep -v github.com/sigstore/gitsign/pkg/version)
- name: go_base_image
value: brew.registry.redhat.io/rh-osbs/openshift-golang-builder@sha256:b4242f87696cf168b1fc733a969ef60ee53716dd3c551b02303d76f9d42a53d7
value: brew.registry.redhat.io/rh-osbs/openshift-golang-builder@sha256:356986205e66dcc03ef9a9fef5a7a13d6d59c29efacf1d971f9224c678932cf0
taskRunSpecs:
- pipelineTaskName: run-unit-test
serviceAccountName: appstudio-pipeline
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.gitsign.rh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build stage
FROM brew.registry.redhat.io/rh-osbs/openshift-golang-builder@sha256:b4242f87696cf168b1fc733a969ef60ee53716dd3c551b02303d76f9d42a53d7 AS build-env
FROM brew.registry.redhat.io/rh-osbs/openshift-golang-builder@sha256:356986205e66dcc03ef9a9fef5a7a13d6d59c29efacf1d971f9224c678932cf0 AS build-env
WORKDIR /gitsign
RUN git config --global --add safe.directory /gitsign
COPY . .
Expand Down
2 changes: 1 addition & 1 deletion internal/fulcio/identity.go
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ func (f *IdentityFactory) NewIdentity(ctx context.Context, cfg *config.Config) (
if cfg.ConnectorID == "" {
cfg.Autoclose = false
}
_, err := oauth.GetInteractiveSuccessHTML(cfg.Autoclose, cfg.AutocloseTimeout)
_, err = oauth.GetInteractiveSuccessHTML(cfg.Autoclose, cfg.AutocloseTimeout)
if err != nil {
fmt.Println("error getting interactive success html, using static default", err)
}
Expand Down

0 comments on commit 431116b

Please sign in to comment.