-
Notifications
You must be signed in to change notification settings - Fork 26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Resolve Actions deprecations #1316
Open
frenchy64
wants to merge
3
commits into
master
Choose a base branch
from
iroh-7219-resolve-deprecations
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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
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
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 | ||||
---|---|---|---|---|---|---|
|
@@ -4,30 +4,40 @@ | |||||
(:require [cheshire.core :as json] | ||||||
[clojure.java.shell :as sh])) | ||||||
|
||||||
(defn append-file-var | ||||||
"Add entry k=v to file pointed to by environment variable file-var. | ||||||
|
||||||
eg., useful for: | ||||||
echo '{name}={value}' >> $GITHUB_STATE" | ||||||
[{:keys [getenv]} file-var k v] | ||||||
{:pre [(string? file-var)]} | ||||||
(println (str "Adding file var " file-var ": " k "=" v)) | ||||||
(let [f (getenv file-var)] | ||||||
(assert f (str "append-file-var: file is null! " file-var)) | ||||||
(spit f | ||||||
(str k "=" v "\n") | ||||||
:append true))) | ||||||
|
||||||
(defn add-env | ||||||
"Add env var k=v to future GitHub Actions steps in this job" | ||||||
[{:keys [getenv]} k v] | ||||||
[utils k v] | ||||||
(println (str "Adding env var: " k "=" v)) | ||||||
(spit (getenv "GITHUB_ENV") | ||||||
(str k "=" v "\n") | ||||||
:append true)) | ||||||
(append-file-var utils "GITHUB_ENV" k v)) | ||||||
|
||||||
(defn getenv ^String [^String s] (System/getenv s)) | ||||||
|
||||||
(defn set-json-output | ||||||
"Create JSON 'output' `n` for this Actions step, accessible with ${{ fromJSON(<stepid>.outputs.<n>) }}." | ||||||
[{:keys [set-output] :as utils} n v] | ||||||
(set-output | ||||||
n | ||||||
(json/generate-string v {:pretty false}))) | ||||||
(set-output utils n (json/generate-string v {:pretty false}))) | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I prefer the encode/decode pattern but it doesn't really matter.
Suggested change
|
||||||
|
||||||
(defn set-output | ||||||
"Create 'output' `n` for this Actions step, accessible with ${{ <stepid>.outputs.<n> }}." | ||||||
[n s] | ||||||
[utils n s] | ||||||
{:pre [(string? s)]} | ||||||
;; Actions does not print ::set-output commands to the build output | ||||||
(println (format "DEBUG: Setting output: %s %s" n s)) | ||||||
(println (format "::set-output name=%s::%s" n s))) | ||||||
(append-file-var utils "GITHUB_OUTPUT" n s)) | ||||||
|
||||||
(defn sh [& args] | ||||||
(apply sh/sh args)) | ||||||
|
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we pull these out of the body of the let?