Skip to content

Commit

Permalink
Merge pull request #584 from ch0nx/patch-1
Browse files Browse the repository at this point in the history
Fix update uri for MicrosoftSSMS
  • Loading branch information
aaronparker authored Nov 28, 2023
2 parents 416e8fa + 98f58f7 commit f262e9d
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 14 deletions.
30 changes: 20 additions & 10 deletions .github/ISSUE_TEMPLATE/new-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,32 +12,42 @@ body:
attributes:
label: "What is the new application?"
description: "Provide clear details about the new application you want to see added to Evergreen."
placeholder: "Provide details of the new application that could be added to Evergreen. If known, please add details of an update source/API etc., where current versions of this application can be queried."
placeholder: "Provide details of the new application that could be added to Evergreen. Please add details of an update source/API (e.g. a JSON or XML source), evergreen download links etc., where current versions of this application can be queried."
validations:
required: true
- type: input
id: site
attributes:
label: "Vendor site"
description: "Add a link to the official site for this application"
description: "Add a link to the official site for this application (this can be the links that lists downloads)."
placeholder: https://www.vendor.com
validations:
required: true
- type: checkboxes
id: documentation
- type: dropdown
attributes:
label: "Have you reviewed the list of supported applications?"
description: "Please confirm that you've reviewed the list of currently supported before making this application request."
label: "Does the vendor require a sign-in to download the app?"
description: "If the vendor requires a sign-in to download installers, this application won't be a good candidate for Evergreen."
multiple: false
options:
- label: "Supported apps at: https://stealthpuppy.com/evergreen/apps/"
required: true
- "Yes"
- "No"
validations:
required: true
- type: dropdown
attributes:
label: "Does the vendor require a sign-in?"
description: "If the vendor requires a sign-in to download installers, this application probably won't be a good candidate for Evergreen."
label: "Does the application include an updater?"
description: "Applications that actively check for updates and notify the user or automatically install updates? (These applications may be good candidates for Evergreen)"
multiple: false
options:
- "Yes"
- "No"
validations:
required: true
- type: checkboxes
id: documentation
attributes:
label: "Have you reviewed the list of supported applications?"
description: "Please confirm that you've reviewed the list of currently supported before making this application request."
options:
- label: "Supported apps at: https://stealthpuppy.com/evergreen/apps/"
required: true
2 changes: 1 addition & 1 deletion .github/workflows/publish-module.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

- name: Install and cache PowerShell modules
id: psmodulecache
uses: potatoqualitee/psmodulecache@v5.2
uses: potatoqualitee/psmodulecache@v6.0
with:
modules-to-cache: PowerShellGet
shell: pwsh
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-module.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:

- name: Install and cache PowerShell modules
id: psmodulecache
uses: potatoqualitee/psmodulecache@v5.2
uses: potatoqualitee/psmodulecache@v6.0
with:
modules-to-cache: MarkdownPS
shell: powershell
Expand Down
1 change: 0 additions & 1 deletion Evergreen/Apps/Get-MicrosoftSsms.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ Function Get-MicrosoftSsms {

If ($Null -ne $Content) {
ForEach ($entry in $Content.component) {
Write-Warning -Message "$($MyInvocation.MyCommand): Version returned from the update feed: $($entry.version). See $($script:resourceStrings.Uri.Issues) for more information."

ForEach ($language in $res.Get.Download.Language.GetEnumerator()) {

Expand Down
2 changes: 1 addition & 1 deletion Evergreen/Manifests/MicrosoftSsms.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"Source": "https://go.microsoft.com/fwlink/?LinkId=531355",
"Get": {
"Update": {
"Uri": "https://go.microsoft.com/fwlink/?linkid=2188980",
"Uri": "https://go.microsoft.com/fwlink/?linkid=2251965",
"DatePattern": "yyyy-MM-ddTHH:mm:ss"
},
"Download": {
Expand Down

0 comments on commit f262e9d

Please sign in to comment.