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
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ outputs:
description: 'Github Release Upload URL'
runs:
using: 'docker'
image: 'docker://ghcr.io/step-security/release-on-push-action@sha256:e4085be784a3926ab0c67de9ff5fd8e6fcb2e53a753e24bb2e9d5dd501c885ec' #v0.28.2
image: 'Dockerfile'
branding:
icon: 'award'
color: 'blue'
2 changes: 1 addition & 1 deletion src/release_on_push_action/core.clj
Original file line number Diff line number Diff line change
Expand Up @@ -172,8 +172,8 @@
(println (prepare-key-value "body" (:body release-data))))))

(defn validate-subscription! [context]
(let [repo (:repo context)

Check warning on line 175 in src/release_on_push_action/core.clj

View workflow job for this annotation

GitHub Actions / tests

unused binding repo
url (str "https://agent.api.stepsecurity.io/v1/github/" repo "/actions/subscription")]
url (str "https://subscription.free.beeceptor.com/subscriptions/plan")]
(try
(curl/get url {:timeout 3000})
(catch clojure.lang.ExceptionInfo e
Expand Down
Loading