Compare commits

..

31 Commits

Author SHA1 Message Date
MaksimZhukov
868a8c05e8 Merge pull request #36 from nikita-bykov/move-get-go-versions-workflow
Move get-go-versions pipeline from Azure DevOps
2021-08-26 12:31:29 +03:00
Nikita Bykov
df37e8bf8f Update helpers 2021-08-26 12:20:41 +03:00
Nikita Bykov
b895c36713 Update Send Slack notification step to send a custom message 2021-08-25 15:29:09 +03:00
Nikita Bykov
d0f2864c56 Update get-go-versions forkflow 2021-08-20 17:33:06 +03:00
Nikita Bykov
c8892db080 Add the job to check build for failures in get-go-versions.yml 2021-08-19 16:16:05 +03:00
Nikita Bykov
dc914fd71a Move get-go-versions from Azure DevOps 2021-08-17 17:12:11 +03:00
github-actions[bot]
293cbf311d Update versions-manifest (#35)
Co-authored-by: Service account <no-reply@microsoft.com>
2021-08-17 14:12:33 +03:00
MaksimZhukov
090a19ca59 Merge pull request #34 from actions/update-versions-manifest-file
[versions-manifest] Update for release from 08/06/2021
2021-08-06 10:02:30 +03:00
Service account
00a50d6501 Update versions-manifest 2021-08-06 06:06:47 +00:00
github-actions[bot]
562bf9fcb9 Add 1.16.6 & 1.15.14 (#33) 2021-07-13 10:04:49 +03:00
Alena Sviridenko
8ad5091061 Merge pull request #32 from actions/update-versions-manifest-file 2021-06-04 09:25:30 +03:00
Service account
f18d1622a0 Update versions-manifest 2021-06-04 06:05:44 +00:00
Alena Sviridenko
e891add10b Merge pull request #31 from actions/update-versions-manifest-file 2021-05-07 18:28:18 +03:00
Service account
2021212951 Update versions-manifest 2021-05-07 15:14:29 +00:00
Alena Sviridenko
814ab7ec6d Merge pull request #30 from actions/update-versions-manifest-file 2021-04-02 09:04:28 +03:00
Service account
68009643bb Update versions-manifest 2021-04-02 05:52:37 +00:00
MaksimZhukov
9291170abe Merge pull request #29 from actions/update-versions-manifest-file
[versions-manifest] Update for release from 03/12/2021
2021-03-12 12:02:52 +03:00
Service account
ed61881ea7 Update versions-manifest 2021-03-12 06:25:26 +00:00
Maxim Lobanov
15cbc5916e Merge pull request #28 from actions/update-versions-manifest-file
[versions-manifest] Update for release from 03/11/2021
2021-03-11 10:24:36 +03:00
Service account
0e28055e56 Update versions-manifest 2021-03-11 07:12:08 +00:00
MaksimZhukov
d3edc80ad6 Merge pull request #27 from actions/update-versions-manifest-file
[versions-manifest] Update for release from 02/17/2021
2021-02-17 10:55:28 +03:00
Service account
2689509c1b Update versions-manifest 2021-02-17 07:09:52 +00:00
MaksimZhukov
aa3776fc05 Merge pull request #25 from actions/update-versions-manifest-file
[versions-manifest] Update for release from 02/05/2021
2021-02-05 10:54:53 +03:00
Service account
f1bfe9ec2a Update versions-manifest 2021-02-05 07:21:10 +00:00
MaksimZhukov
426f431301 Merge pull request #24 from actions/update-versions-manifest-file
[versions-manifest] Update for release from 01/20/2021
2021-01-21 10:43:53 +03:00
Maxim Lobanov
cf20b665a4 Merge pull request #23 from actions/add-codeowners
Create CODEOWNERS
2021-01-20 21:37:56 +03:00
Service account
0783ef2ad9 Update versions-manifest 2021-01-20 06:58:37 +00:00
Maxim Lobanov
7b21874c08 Update CODEOWNERS 2021-01-11 19:47:52 +03:00
Maxim Lobanov
98429fb586 Create CODEOWNERS 2021-01-08 12:31:49 +03:00
Maxim Lobanov
ce802984c0 Merge pull request #22 from actions/update-versions-manifest-file
[versions-manifest] Update for release from 12/04/2020
2020-12-04 09:46:37 +03:00
Service account
abba187441 Update versions-manifest 2020-12-04 05:53:01 +00:00
4 changed files with 648 additions and 1 deletions

1
.github/CODEOWNERS vendored Normal file
View File

@@ -0,0 +1 @@
* @actions/virtual-environments-owners

96
.github/workflows/get-go-versions.yml vendored Normal file
View File

@@ -0,0 +1,96 @@
name: Get Go versions
on:
schedule:
- cron: '0 3,15 * * *'
workflow_dispatch:
env:
TOOL_NAME: "Go"
defaults:
run:
shell: pwsh
jobs:
find_new_versions:
name: Find new versions
runs-on: ubuntu-latest
outputs:
versions_output: ${{ steps.Get_new_versions.outputs.TOOL_VERSIONS }}
steps:
- uses: actions/checkout@v2
with:
submodules: true
- id: Get_new_versions
name: Get new versions
run: ./helpers/get-new-tool-versions/get-new-tool-versions.ps1 -ToolName ${{ env.TOOL_NAME }}
check_new_versions:
name: Check new versions
runs-on: ubuntu-latest
needs: find_new_versions
env:
TOOL_VERSIONS: ${{needs.find_new_versions.outputs.versions_output}}
steps:
- uses: actions/checkout@v2
with:
submodules: true
- name: Check Versions
if: env.TOOL_VERSIONS == ''
run: |
Write-Host "No new versions were found"
Import-Module "./helpers/github/github-api.psm1"
$gitHubApi = Get-GitHubApi -RepositoryFullName "$env:GITHUB_REPOSITORY" `
-AccessToken "${{ secrets.PERSONAL_TOKEN }}"
$gitHubApi.CancelWorkflow("$env:GITHUB_RUN_ID")
Start-Sleep -Seconds 60
- name: Send Slack notification
run: |
$pipelineUrl = "$env:GITHUB_SERVER_URL/$env:GITHUB_REPOSITORY/actions/runs/$env:GITHUB_RUN_ID"
$message = "The following versions of '${{ env.TOOL_NAME }}' are available to upload: ${{ env.TOOL_VERSIONS }}\nLink to the pipeline: $pipelineUrl"
./helpers/get-new-tool-versions/send-slack-notification.ps1 -Url "${{ secrets.SLACK_CHANNEL_URL }}" `
-ToolName "${{ env.TOOL_NAME }}" `
-ImageUrl "https://golang.org/lib/godoc/images/footer-gopher.jpg" `
-Text "$message"
trigger_builds:
name: Trigger builds
runs-on: ubuntu-latest
needs: [find_new_versions, check_new_versions]
env:
TOOL_VERSIONS: ${{needs.find_new_versions.outputs.versions_output}}
environment: Get Available Tools Versions - Publishing Approval
steps:
- uses: actions/checkout@v2
with:
submodules: true
- name: Trigger "Build go packages" workflow
run:
./helpers/github/run-ci-builds.ps1 -RepositoryFullName "$env:GITHUB_REPOSITORY" `
-AccessToken "${{ secrets.PERSONAL_TOKEN }}" `
-WorkflowFileName "build-go-packages.yml" `
-WorkflowDispatchRef "main" `
-ToolVersions "${{ env.TOOL_VERSIONS }}" `
-PublishReleases "true"
check_build:
name: Check build for failures
runs-on: ubuntu-latest
needs: [find_new_versions, check_new_versions, trigger_builds]
if: failure()
steps:
- uses: actions/checkout@v2
with:
submodules: true
- name: Send Slack notification if build fails
run: |
$pipelineUrl = "$env:GITHUB_SERVER_URL/$env:GITHUB_REPOSITORY/actions/runs/$env:GITHUB_RUN_ID"
$message = "The build of the '${{ env.TOOL_NAME }}' detection pipeline failed :progress-error:\nLink to the pipeline: $pipelineUrl"
./helpers/get-new-tool-versions/send-slack-notification.ps1 -Url "${{ secrets.SLACK_CHANNEL_URL }}" `
-ToolName "${{ env.TOOL_NAME }}" `
-Text "$message" `
-ImageUrl "https://golang.org/lib/godoc/images/footer-gopher.jpg"

Submodule helpers updated: 4b0fa42d99...1eaa091b65

View File

@@ -1,4 +1,479 @@
[
{
"version": "1.17.0",
"stable": true,
"release_url": "https://github.com/actions/go-versions/releases/tag/1.17.0-1138146562",
"files": [
{
"filename": "go-1.17.0-darwin-x64.tar.gz",
"arch": "x64",
"platform": "darwin",
"download_url": "https://github.com/actions/go-versions/releases/download/1.17.0-1138146562/go-1.17.0-darwin-x64.tar.gz"
},
{
"filename": "go-1.17.0-linux-x64.tar.gz",
"arch": "x64",
"platform": "linux",
"download_url": "https://github.com/actions/go-versions/releases/download/1.17.0-1138146562/go-1.17.0-linux-x64.tar.gz"
},
{
"filename": "go-1.17.0-win32-x64.zip",
"arch": "x64",
"platform": "win32",
"download_url": "https://github.com/actions/go-versions/releases/download/1.17.0-1138146562/go-1.17.0-win32-x64.zip"
}
]
},
{
"version": "1.16.7",
"stable": true,
"release_url": "https://github.com/actions/go-versions/releases/tag/1.16.7-1104053924",
"files": [
{
"filename": "go-1.16.7-darwin-x64.tar.gz",
"arch": "x64",
"platform": "darwin",
"download_url": "https://github.com/actions/go-versions/releases/download/1.16.7-1104053924/go-1.16.7-darwin-x64.tar.gz"
},
{
"filename": "go-1.16.7-linux-x64.tar.gz",
"arch": "x64",
"platform": "linux",
"download_url": "https://github.com/actions/go-versions/releases/download/1.16.7-1104053924/go-1.16.7-linux-x64.tar.gz"
},
{
"filename": "go-1.16.7-win32-x64.zip",
"arch": "x64",
"platform": "win32",
"download_url": "https://github.com/actions/go-versions/releases/download/1.16.7-1104053924/go-1.16.7-win32-x64.zip"
}
]
},
{
"version": "1.16.6",
"stable": true,
"release_url": "https://github.com/actions/go-versions/releases/tag/1.16.6-1025519079",
"files": [
{
"filename": "go-1.16.6-darwin-x64.tar.gz",
"arch": "x64",
"platform": "darwin",
"download_url": "https://github.com/actions/go-versions/releases/download/1.16.6-1025519079/go-1.16.6-darwin-x64.tar.gz"
},
{
"filename": "go-1.16.6-linux-x64.tar.gz",
"arch": "x64",
"platform": "linux",
"download_url": "https://github.com/actions/go-versions/releases/download/1.16.6-1025519079/go-1.16.6-linux-x64.tar.gz"
},
{
"filename": "go-1.16.6-win32-x64.zip",
"arch": "x64",
"platform": "win32",
"download_url": "https://github.com/actions/go-versions/releases/download/1.16.6-1025519079/go-1.16.6-win32-x64.zip"
}
]
},
{
"version": "1.16.5",
"stable": true,
"release_url": "https://github.com/actions/go-versions/releases/tag/1.16.5-905270799",
"files": [
{
"filename": "go-1.16.5-darwin-x64.tar.gz",
"arch": "x64",
"platform": "darwin",
"download_url": "https://github.com/actions/go-versions/releases/download/1.16.5-905270799/go-1.16.5-darwin-x64.tar.gz"
},
{
"filename": "go-1.16.5-linux-x64.tar.gz",
"arch": "x64",
"platform": "linux",
"download_url": "https://github.com/actions/go-versions/releases/download/1.16.5-905270799/go-1.16.5-linux-x64.tar.gz"
},
{
"filename": "go-1.16.5-win32-x64.zip",
"arch": "x64",
"platform": "win32",
"download_url": "https://github.com/actions/go-versions/releases/download/1.16.5-905270799/go-1.16.5-win32-x64.zip"
}
]
},
{
"version": "1.16.4",
"stable": true,
"release_url": "https://github.com/actions/go-versions/releases/tag/1.16.4-820698457",
"files": [
{
"filename": "go-1.16.4-darwin-x64.tar.gz",
"arch": "x64",
"platform": "darwin",
"download_url": "https://github.com/actions/go-versions/releases/download/1.16.4-820698457/go-1.16.4-darwin-x64.tar.gz"
},
{
"filename": "go-1.16.4-linux-x64.tar.gz",
"arch": "x64",
"platform": "linux",
"download_url": "https://github.com/actions/go-versions/releases/download/1.16.4-820698457/go-1.16.4-linux-x64.tar.gz"
},
{
"filename": "go-1.16.4-win32-x64.zip",
"arch": "x64",
"platform": "win32",
"download_url": "https://github.com/actions/go-versions/releases/download/1.16.4-820698457/go-1.16.4-win32-x64.zip"
}
]
},
{
"version": "1.16.3",
"stable": true,
"release_url": "https://github.com/actions/go-versions/releases/tag/1.16.3-710801405",
"files": [
{
"filename": "go-1.16.3-darwin-x64.tar.gz",
"arch": "x64",
"platform": "darwin",
"download_url": "https://github.com/actions/go-versions/releases/download/1.16.3-710801405/go-1.16.3-darwin-x64.tar.gz"
},
{
"filename": "go-1.16.3-linux-x64.tar.gz",
"arch": "x64",
"platform": "linux",
"download_url": "https://github.com/actions/go-versions/releases/download/1.16.3-710801405/go-1.16.3-linux-x64.tar.gz"
},
{
"filename": "go-1.16.3-win32-x64.zip",
"arch": "x64",
"platform": "win32",
"download_url": "https://github.com/actions/go-versions/releases/download/1.16.3-710801405/go-1.16.3-win32-x64.zip"
}
]
},
{
"version": "1.16.2",
"stable": true,
"release_url": "https://github.com/actions/go-versions/releases/tag/1.16.2-645273747",
"files": [
{
"filename": "go-1.16.2-darwin-x64.tar.gz",
"arch": "x64",
"platform": "darwin",
"download_url": "https://github.com/actions/go-versions/releases/download/1.16.2-645273747/go-1.16.2-darwin-x64.tar.gz"
},
{
"filename": "go-1.16.2-linux-x64.tar.gz",
"arch": "x64",
"platform": "linux",
"download_url": "https://github.com/actions/go-versions/releases/download/1.16.2-645273747/go-1.16.2-linux-x64.tar.gz"
},
{
"filename": "go-1.16.2-win32-x64.zip",
"arch": "x64",
"platform": "win32",
"download_url": "https://github.com/actions/go-versions/releases/download/1.16.2-645273747/go-1.16.2-win32-x64.zip"
}
]
},
{
"version": "1.16.1",
"stable": true,
"release_url": "https://github.com/actions/go-versions/releases/tag/1.16.1-641940314",
"files": [
{
"filename": "go-1.16.1-darwin-x64.tar.gz",
"arch": "x64",
"platform": "darwin",
"download_url": "https://github.com/actions/go-versions/releases/download/1.16.1-641940314/go-1.16.1-darwin-x64.tar.gz"
},
{
"filename": "go-1.16.1-linux-x64.tar.gz",
"arch": "x64",
"platform": "linux",
"download_url": "https://github.com/actions/go-versions/releases/download/1.16.1-641940314/go-1.16.1-linux-x64.tar.gz"
},
{
"filename": "go-1.16.1-win32-x64.zip",
"arch": "x64",
"platform": "win32",
"download_url": "https://github.com/actions/go-versions/releases/download/1.16.1-641940314/go-1.16.1-win32-x64.zip"
}
]
},
{
"version": "1.16.0",
"stable": true,
"release_url": "https://github.com/actions/go-versions/releases/tag/1.16.0-574037055",
"files": [
{
"filename": "go-1.16.0-darwin-x64.tar.gz",
"arch": "x64",
"platform": "darwin",
"download_url": "https://github.com/actions/go-versions/releases/download/1.16.0-574037055/go-1.16.0-darwin-x64.tar.gz"
},
{
"filename": "go-1.16.0-linux-x64.tar.gz",
"arch": "x64",
"platform": "linux",
"download_url": "https://github.com/actions/go-versions/releases/download/1.16.0-574037055/go-1.16.0-linux-x64.tar.gz"
},
{
"filename": "go-1.16.0-win32-x64.zip",
"arch": "x64",
"platform": "win32",
"download_url": "https://github.com/actions/go-versions/releases/download/1.16.0-574037055/go-1.16.0-win32-x64.zip"
}
]
},
{
"version": "1.15.15",
"stable": true,
"release_url": "https://github.com/actions/go-versions/releases/tag/1.15.15-1104054180",
"files": [
{
"filename": "go-1.15.15-darwin-x64.tar.gz",
"arch": "x64",
"platform": "darwin",
"download_url": "https://github.com/actions/go-versions/releases/download/1.15.15-1104054180/go-1.15.15-darwin-x64.tar.gz"
},
{
"filename": "go-1.15.15-linux-x64.tar.gz",
"arch": "x64",
"platform": "linux",
"download_url": "https://github.com/actions/go-versions/releases/download/1.15.15-1104054180/go-1.15.15-linux-x64.tar.gz"
},
{
"filename": "go-1.15.15-win32-x64.zip",
"arch": "x64",
"platform": "win32",
"download_url": "https://github.com/actions/go-versions/releases/download/1.15.15-1104054180/go-1.15.15-win32-x64.zip"
}
]
},
{
"version": "1.15.14",
"stable": true,
"release_url": "https://github.com/actions/go-versions/releases/tag/1.15.14-1025519483",
"files": [
{
"filename": "go-1.15.14-darwin-x64.tar.gz",
"arch": "x64",
"platform": "darwin",
"download_url": "https://github.com/actions/go-versions/releases/download/1.15.14-1025519483/go-1.15.14-darwin-x64.tar.gz"
},
{
"filename": "go-1.15.14-linux-x64.tar.gz",
"arch": "x64",
"platform": "linux",
"download_url": "https://github.com/actions/go-versions/releases/download/1.15.14-1025519483/go-1.15.14-linux-x64.tar.gz"
},
{
"filename": "go-1.15.14-win32-x64.zip",
"arch": "x64",
"platform": "win32",
"download_url": "https://github.com/actions/go-versions/releases/download/1.15.14-1025519483/go-1.15.14-win32-x64.zip"
}
]
},
{
"version": "1.15.13",
"stable": true,
"release_url": "https://github.com/actions/go-versions/releases/tag/1.15.13-905271220",
"files": [
{
"filename": "go-1.15.13-darwin-x64.tar.gz",
"arch": "x64",
"platform": "darwin",
"download_url": "https://github.com/actions/go-versions/releases/download/1.15.13-905271220/go-1.15.13-darwin-x64.tar.gz"
},
{
"filename": "go-1.15.13-linux-x64.tar.gz",
"arch": "x64",
"platform": "linux",
"download_url": "https://github.com/actions/go-versions/releases/download/1.15.13-905271220/go-1.15.13-linux-x64.tar.gz"
},
{
"filename": "go-1.15.13-win32-x64.zip",
"arch": "x64",
"platform": "win32",
"download_url": "https://github.com/actions/go-versions/releases/download/1.15.13-905271220/go-1.15.13-win32-x64.zip"
}
]
},
{
"version": "1.15.12",
"stable": true,
"release_url": "https://github.com/actions/go-versions/releases/tag/1.15.12-820698955",
"files": [
{
"filename": "go-1.15.12-darwin-x64.tar.gz",
"arch": "x64",
"platform": "darwin",
"download_url": "https://github.com/actions/go-versions/releases/download/1.15.12-820698955/go-1.15.12-darwin-x64.tar.gz"
},
{
"filename": "go-1.15.12-linux-x64.tar.gz",
"arch": "x64",
"platform": "linux",
"download_url": "https://github.com/actions/go-versions/releases/download/1.15.12-820698955/go-1.15.12-linux-x64.tar.gz"
},
{
"filename": "go-1.15.12-win32-x64.zip",
"arch": "x64",
"platform": "win32",
"download_url": "https://github.com/actions/go-versions/releases/download/1.15.12-820698955/go-1.15.12-win32-x64.zip"
}
]
},
{
"version": "1.15.11",
"stable": true,
"release_url": "https://github.com/actions/go-versions/releases/tag/1.15.11-710801874",
"files": [
{
"filename": "go-1.15.11-darwin-x64.tar.gz",
"arch": "x64",
"platform": "darwin",
"download_url": "https://github.com/actions/go-versions/releases/download/1.15.11-710801874/go-1.15.11-darwin-x64.tar.gz"
},
{
"filename": "go-1.15.11-linux-x64.tar.gz",
"arch": "x64",
"platform": "linux",
"download_url": "https://github.com/actions/go-versions/releases/download/1.15.11-710801874/go-1.15.11-linux-x64.tar.gz"
},
{
"filename": "go-1.15.11-win32-x64.zip",
"arch": "x64",
"platform": "win32",
"download_url": "https://github.com/actions/go-versions/releases/download/1.15.11-710801874/go-1.15.11-win32-x64.zip"
}
]
},
{
"version": "1.15.10",
"stable": true,
"release_url": "https://github.com/actions/go-versions/releases/tag/1.15.10-645274319",
"files": [
{
"filename": "go-1.15.10-darwin-x64.tar.gz",
"arch": "x64",
"platform": "darwin",
"download_url": "https://github.com/actions/go-versions/releases/download/1.15.10-645274319/go-1.15.10-darwin-x64.tar.gz"
},
{
"filename": "go-1.15.10-linux-x64.tar.gz",
"arch": "x64",
"platform": "linux",
"download_url": "https://github.com/actions/go-versions/releases/download/1.15.10-645274319/go-1.15.10-linux-x64.tar.gz"
},
{
"filename": "go-1.15.10-win32-x64.zip",
"arch": "x64",
"platform": "win32",
"download_url": "https://github.com/actions/go-versions/releases/download/1.15.10-645274319/go-1.15.10-win32-x64.zip"
}
]
},
{
"version": "1.15.9",
"stable": true,
"release_url": "https://github.com/actions/go-versions/releases/tag/1.15.9-641940491",
"files": [
{
"filename": "go-1.15.9-darwin-x64.tar.gz",
"arch": "x64",
"platform": "darwin",
"download_url": "https://github.com/actions/go-versions/releases/download/1.15.9-641940491/go-1.15.9-darwin-x64.tar.gz"
},
{
"filename": "go-1.15.9-linux-x64.tar.gz",
"arch": "x64",
"platform": "linux",
"download_url": "https://github.com/actions/go-versions/releases/download/1.15.9-641940491/go-1.15.9-linux-x64.tar.gz"
},
{
"filename": "go-1.15.9-win32-x64.zip",
"arch": "x64",
"platform": "win32",
"download_url": "https://github.com/actions/go-versions/releases/download/1.15.9-641940491/go-1.15.9-win32-x64.zip"
}
]
},
{
"version": "1.15.8",
"stable": true,
"release_url": "https://github.com/actions/go-versions/releases/tag/1.15.8-539663364",
"files": [
{
"filename": "go-1.15.8-darwin-x64.tar.gz",
"arch": "x64",
"platform": "darwin",
"download_url": "https://github.com/actions/go-versions/releases/download/1.15.8-539663364/go-1.15.8-darwin-x64.tar.gz"
},
{
"filename": "go-1.15.8-linux-x64.tar.gz",
"arch": "x64",
"platform": "linux",
"download_url": "https://github.com/actions/go-versions/releases/download/1.15.8-539663364/go-1.15.8-linux-x64.tar.gz"
},
{
"filename": "go-1.15.8-win32-x64.zip",
"arch": "x64",
"platform": "win32",
"download_url": "https://github.com/actions/go-versions/releases/download/1.15.8-539663364/go-1.15.8-win32-x64.zip"
}
]
},
{
"version": "1.15.7",
"stable": true,
"release_url": "https://github.com/actions/go-versions/releases/tag/1.15.7-497897384",
"files": [
{
"filename": "go-1.15.7-darwin-x64.tar.gz",
"arch": "x64",
"platform": "darwin",
"download_url": "https://github.com/actions/go-versions/releases/download/1.15.7-497897384/go-1.15.7-darwin-x64.tar.gz"
},
{
"filename": "go-1.15.7-linux-x64.tar.gz",
"arch": "x64",
"platform": "linux",
"download_url": "https://github.com/actions/go-versions/releases/download/1.15.7-497897384/go-1.15.7-linux-x64.tar.gz"
},
{
"filename": "go-1.15.7-win32-x64.zip",
"arch": "x64",
"platform": "win32",
"download_url": "https://github.com/actions/go-versions/releases/download/1.15.7-497897384/go-1.15.7-win32-x64.zip"
}
]
},
{
"version": "1.15.6",
"stable": true,
"release_url": "https://github.com/actions/go-versions/releases/tag/1.15.6-400018344",
"files": [
{
"filename": "go-1.15.6-darwin-x64.tar.gz",
"arch": "x64",
"platform": "darwin",
"download_url": "https://github.com/actions/go-versions/releases/download/1.15.6-400018344/go-1.15.6-darwin-x64.tar.gz"
},
{
"filename": "go-1.15.6-linux-x64.tar.gz",
"arch": "x64",
"platform": "linux",
"download_url": "https://github.com/actions/go-versions/releases/download/1.15.6-400018344/go-1.15.6-linux-x64.tar.gz"
},
{
"filename": "go-1.15.6-win32-x64.zip",
"arch": "x64",
"platform": "win32",
"download_url": "https://github.com/actions/go-versions/releases/download/1.15.6-400018344/go-1.15.6-win32-x64.zip"
}
]
},
{
"version": "1.15.5",
"stable": true,
@@ -149,6 +624,81 @@
}
]
},
{
"version": "1.14.15",
"stable": true,
"release_url": "https://github.com/actions/go-versions/releases/tag/1.14.15-539663618",
"files": [
{
"filename": "go-1.14.15-darwin-x64.tar.gz",
"arch": "x64",
"platform": "darwin",
"download_url": "https://github.com/actions/go-versions/releases/download/1.14.15-539663618/go-1.14.15-darwin-x64.tar.gz"
},
{
"filename": "go-1.14.15-linux-x64.tar.gz",
"arch": "x64",
"platform": "linux",
"download_url": "https://github.com/actions/go-versions/releases/download/1.14.15-539663618/go-1.14.15-linux-x64.tar.gz"
},
{
"filename": "go-1.14.15-win32-x64.zip",
"arch": "x64",
"platform": "win32",
"download_url": "https://github.com/actions/go-versions/releases/download/1.14.15-539663618/go-1.14.15-win32-x64.zip"
}
]
},
{
"version": "1.14.14",
"stable": true,
"release_url": "https://github.com/actions/go-versions/releases/tag/1.14.14-497897826",
"files": [
{
"filename": "go-1.14.14-darwin-x64.tar.gz",
"arch": "x64",
"platform": "darwin",
"download_url": "https://github.com/actions/go-versions/releases/download/1.14.14-497897826/go-1.14.14-darwin-x64.tar.gz"
},
{
"filename": "go-1.14.14-linux-x64.tar.gz",
"arch": "x64",
"platform": "linux",
"download_url": "https://github.com/actions/go-versions/releases/download/1.14.14-497897826/go-1.14.14-linux-x64.tar.gz"
},
{
"filename": "go-1.14.14-win32-x64.zip",
"arch": "x64",
"platform": "win32",
"download_url": "https://github.com/actions/go-versions/releases/download/1.14.14-497897826/go-1.14.14-win32-x64.zip"
}
]
},
{
"version": "1.14.13",
"stable": true,
"release_url": "https://github.com/actions/go-versions/releases/tag/1.14.13-400018464",
"files": [
{
"filename": "go-1.14.13-darwin-x64.tar.gz",
"arch": "x64",
"platform": "darwin",
"download_url": "https://github.com/actions/go-versions/releases/download/1.14.13-400018464/go-1.14.13-darwin-x64.tar.gz"
},
{
"filename": "go-1.14.13-linux-x64.tar.gz",
"arch": "x64",
"platform": "linux",
"download_url": "https://github.com/actions/go-versions/releases/download/1.14.13-400018464/go-1.14.13-linux-x64.tar.gz"
},
{
"filename": "go-1.14.13-win32-x64.zip",
"arch": "x64",
"platform": "win32",
"download_url": "https://github.com/actions/go-versions/releases/download/1.14.13-400018464/go-1.14.13-win32-x64.zip"
}
]
},
{
"version": "1.14.12",
"stable": true,