-
Notifications
You must be signed in to change notification settings - Fork 349
bump microsoft/apm-action to v1.4.1, add DefaultAPMActionVersion constant, rebuild wasm, recompile #23150
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
bump microsoft/apm-action to v1.4.1, add DefaultAPMActionVersion constant, rebuild wasm, recompile #23150
Changes from all commits
7e1037c
3f372a3
d8ae8fd
ae7b04e
6a3450d
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -4,6 +4,7 @@ import ( | |||||
| "fmt" | ||||||
| "sort" | ||||||
|
|
||||||
| "github.com/github/gh-aw/pkg/constants" | ||||||
| "github.com/github/gh-aw/pkg/logger" | ||||||
| ) | ||||||
|
|
||||||
|
|
@@ -131,7 +132,11 @@ func GenerateAPMPackStep(apmDeps *APMDependenciesInfo, target string, data *Work | |||||
|
|
||||||
| apmDepsLog.Printf("Generating APM pack step: %d packages, target=%s", len(apmDeps.Packages), target) | ||||||
|
|
||||||
| actionRef := GetActionPin("microsoft/apm-action") | ||||||
| actionRef, err := GetActionPinWithData("microsoft/apm-action", string(constants.DefaultAPMActionVersion), data) | ||||||
| if err != nil { | ||||||
|
||||||
| if err != nil { | |
| if err != nil || actionRef == "" { |
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.
The constant
DefaultAPMActionVersionfollows the same pattern asDefaultGitHubScriptVersion. Consider adding a brief comment linking to the upstream release notes or changelog so future reviewers can quickly verify what changed between versions.