Compare commits

...

30 Commits

Author SHA1 Message Date
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
MaksimZhukov
eab7225c23 Merge pull request #21 from MaksimZhukov/v-mazhuk/fix-powerhell-issue-with-paths
Fix PowerShell issue with relative paths
2020-11-17 20:54:55 +03:00
MaksimZhukov
ba4d1dead0 Fix PowerShell issue with relative paths 2020-11-17 20:16:35 +03:00
MaksimZhukov
bbbdbbf479 Merge pull request #20 from actions/update-versions-manifest-file
[versions-manifest] Update for release from 11/13/2020
2020-11-13 10:52:10 +03:00
Service account
078e4a8546 Update versions-manifest 2020-11-13 06:42:14 +00:00
MaksimZhukov
690124df27 Merge pull request #19 from actions/update-versions-manifest-file
[versions-manifest] Update for release from 11/06/2020
2020-11-06 11:15:55 +03:00
Service account
5d20670749 Update versions-manifest 2020-11-06 08:13:48 +00:00
MaksimZhukov
e89bc70e56 Merge pull request #18 from MaksimZhukov/v-mazhuk/add-pull-request-event-trigger
Add ability to trigger packages generation on PRs
2020-11-03 15:16:25 +03:00
MaksimZhukov
889792e4fa Add ability to trigger packages generation on PRs 2020-11-02 19:52:43 +03:00
Maxim Lobanov
eba638186e Merge pull request #17 from actions/update-versions-manifest-file
[versions-manifest] Update for release from 10/15/2020
2020-10-15 10:20:55 +03:00
Service account
808755602f Update versions-manifest 2020-10-15 07:04:24 +00:00
MaksimZhukov
72a65bfa06 Merge pull request #16 from actions/update-versions-manifest-file
[versions-manifest] Update for release from 09/10/2020
2020-09-10 11:37:48 +03:00
MaksimZhukov
37c1fbd5d5 Merge pull request #15 from actions/v-mazhuk/fix-tests
Update git modules and fix tests
2020-09-10 11:33:52 +03:00
Service account
f7ed56c974 Update versions-manifest 2020-09-10 07:03:35 +00:00
MaksimZhukov
19f60e7cf5 Fix coments 2020-09-10 01:57:10 +03:00
MaksimZhukov
333033608c Update helpers and fix tests 2020-09-09 20:35:55 +03:00
MaksimZhukov
7cea0f8549 Merge pull request #14 from actions/update-versions-manifest-file
[versions-manifest] Update for release from 09/02/2020
2020-09-02 14:50:58 +03:00
Service account
817f326783 Update versions-manifest 2020-09-02 11:34:48 +00:00
8 changed files with 504 additions and 15 deletions

1
.github/CODEOWNERS vendored Normal file
View File

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

View File

@@ -10,19 +10,26 @@ on:
description: 'Whether to publish releases' description: 'Whether to publish releases'
required: true required: true
default: 'false' default: 'false'
pull_request:
paths-ignore:
- 'versions-manifest.json'
- 'LICENSE'
- '**.md'
branches:
- 'main'
env: env:
VERSION: ${{ github.event.inputs.VERSION }} VERSION: ${{ github.event.inputs.VERSION || '1.15.3' }}
defaults: defaults:
run: run:
shell: pwsh shell: pwsh
jobs: jobs:
build_go: build_go:
name: Build Go ${{ github.event.inputs.VERSION }} [${{ matrix.platform }}] name: Build Go ${{ github.event.inputs.VERSION || '1.15.3' }} [${{ matrix.platform }}]
runs-on: ubuntu-latest runs-on: ubuntu-latest
env: env:
ARTIFACT_NAME: go-${{ github.event.inputs.VERSION }}-${{ matrix.platform }}-x64 ARTIFACT_NAME: go-${{ github.event.inputs.VERSION || '1.15.3' }}-${{ matrix.platform }}-x64
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:
@@ -44,11 +51,11 @@ jobs:
path: ${{ runner.temp }}/artifact path: ${{ runner.temp }}/artifact
test_go: test_go:
name: Test Go ${{ github.event.inputs.VERSION }} [${{ matrix.platform }}] name: Test Go ${{ github.event.inputs.VERSION || '1.15.3' }} [${{ matrix.platform }}]
needs: build_go needs: build_go
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
env: env:
ARTIFACT_NAME: go-${{ github.event.inputs.VERSION }}-${{ matrix.platform }}-x64 ARTIFACT_NAME: go-${{ github.event.inputs.VERSION || '1.15.3' }}-${{ matrix.platform }}-x64
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:
@@ -89,7 +96,7 @@ jobs:
working-directory: ${{ runner.temp }}/${{ env.ARTIFACT_NAME }} working-directory: ${{ runner.temp }}/${{ env.ARTIFACT_NAME }}
- name: Setup Go ${{ env.VERSION }} - name: Setup Go ${{ env.VERSION }}
uses: actions/setup-go@v2.1.1 uses: actions/setup-go@v2.1.3
with: with:
go-version: ${{ env.VERSION }} go-version: ${{ env.VERSION }}
@@ -110,7 +117,7 @@ jobs:
publish_release: publish_release:
name: Publish release name: Publish release
if: github.event.inputs.PUBLISH_RELEASES == 'true' if: github.event_name == 'workflow_dispatch' && github.event.inputs.PUBLISH_RELEASES == 'true'
needs: test_go needs: test_go
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:

View File

@@ -1,5 +1,5 @@
using module "./builders/win-go-builder.psm1" using module "./win-go-builder.psm1"
using module "./builders/nix-go-builder.psm1" using module "./nix-go-builder.psm1"
<# <#
.SYNOPSIS .SYNOPSIS

View File

@@ -1,4 +1,4 @@
using module "./builders/go-builder.psm1" using module "./go-builder.psm1"
class NixGoBuilder : GoBuilder { class NixGoBuilder : GoBuilder {
<# <#

View File

@@ -1,4 +1,4 @@
using module "./builders/go-builder.psm1" using module "./go-builder.psm1"
class WinGoBuilder : GoBuilder { class WinGoBuilder : GoBuilder {
<# <#

Submodule helpers updated: 3b38e3de4c...4b0fa42d99

View File

@@ -57,7 +57,9 @@ Describe "Go" {
Set-Location -Path $simpleLocation Set-Location -Path $simpleLocation
"go run simple.go" | Should -ReturnZeroExitCode "go run simple.go" | Should -ReturnZeroExitCode
"go build simple.go" | Should -ReturnZeroExitCode "go build simple.go" | Should -ReturnZeroExitCode
"./simple" | Should -ReturnZeroExitCode $compiledPackageName = "simple"
if ($IsWindows) { $compiledPackageName += ".exe" }
(Resolve-Path "./$compiledPackageName").Path | Should -ReturnZeroExitCode
} }
It "Run maps code" { It "Run maps code" {
@@ -65,7 +67,9 @@ Describe "Go" {
Set-Location -Path $mapsLocation Set-Location -Path $mapsLocation
"go run maps.go" | Should -ReturnZeroExitCode "go run maps.go" | Should -ReturnZeroExitCode
"go build maps.go" | Should -ReturnZeroExitCode "go build maps.go" | Should -ReturnZeroExitCode
"./maps" | Should -ReturnZeroExitCode $compiledPackageName = "maps"
if ($IsWindows) { $compiledPackageName += ".exe" }
(Resolve-Path "./$compiledPackageName").Path | Should -ReturnZeroExitCode
} }
It "Run methods code" { It "Run methods code" {
@@ -73,6 +77,8 @@ Describe "Go" {
Set-Location -Path $methodsLocation Set-Location -Path $methodsLocation
"go run methods.go" | Should -ReturnZeroExitCode "go run methods.go" | Should -ReturnZeroExitCode
"go build methods.go" | Should -ReturnZeroExitCode "go build methods.go" | Should -ReturnZeroExitCode
"./methods" | Should -ReturnZeroExitCode $compiledPackageName = "methods"
if ($IsWindows) { $compiledPackageName += ".exe" }
(Resolve-Path "./$compiledPackageName").Path | Should -ReturnZeroExitCode
} }
} }

View File

@@ -1,4 +1,279 @@
[ [
{
"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.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,
"release_url": "https://github.com/actions/go-versions/releases/tag/1.15.5-361109907",
"files": [
{
"filename": "go-1.15.5-darwin-x64.tar.gz",
"arch": "x64",
"platform": "darwin",
"download_url": "https://github.com/actions/go-versions/releases/download/1.15.5-361109907/go-1.15.5-darwin-x64.tar.gz"
},
{
"filename": "go-1.15.5-linux-x64.tar.gz",
"arch": "x64",
"platform": "linux",
"download_url": "https://github.com/actions/go-versions/releases/download/1.15.5-361109907/go-1.15.5-linux-x64.tar.gz"
},
{
"filename": "go-1.15.5-win32-x64.zip",
"arch": "x64",
"platform": "win32",
"download_url": "https://github.com/actions/go-versions/releases/download/1.15.5-361109907/go-1.15.5-win32-x64.zip"
}
]
},
{
"version": "1.15.4",
"stable": true,
"release_url": "https://github.com/actions/go-versions/releases/tag/1.15.4-349041590",
"files": [
{
"filename": "go-1.15.4-darwin-x64.tar.gz",
"arch": "x64",
"platform": "darwin",
"download_url": "https://github.com/actions/go-versions/releases/download/1.15.4-349041590/go-1.15.4-darwin-x64.tar.gz"
},
{
"filename": "go-1.15.4-linux-x64.tar.gz",
"arch": "x64",
"platform": "linux",
"download_url": "https://github.com/actions/go-versions/releases/download/1.15.4-349041590/go-1.15.4-linux-x64.tar.gz"
},
{
"filename": "go-1.15.4-win32-x64.zip",
"arch": "x64",
"platform": "win32",
"download_url": "https://github.com/actions/go-versions/releases/download/1.15.4-349041590/go-1.15.4-win32-x64.zip"
}
]
},
{
"version": "1.15.3",
"stable": true,
"release_url": "https://github.com/actions/go-versions/releases/tag/1.15.3-308043678",
"files": [
{
"filename": "go-1.15.3-darwin-x64.tar.gz",
"arch": "x64",
"platform": "darwin",
"download_url": "https://github.com/actions/go-versions/releases/download/1.15.3-308043678/go-1.15.3-darwin-x64.tar.gz"
},
{
"filename": "go-1.15.3-linux-x64.tar.gz",
"arch": "x64",
"platform": "linux",
"download_url": "https://github.com/actions/go-versions/releases/download/1.15.3-308043678/go-1.15.3-linux-x64.tar.gz"
},
{
"filename": "go-1.15.3-win32-x64.zip",
"arch": "x64",
"platform": "win32",
"download_url": "https://github.com/actions/go-versions/releases/download/1.15.3-308043678/go-1.15.3-win32-x64.zip"
}
]
},
{
"version": "1.15.2",
"stable": true,
"release_url": "https://github.com/actions/go-versions/releases/tag/1.15.2-247587753",
"files": [
{
"filename": "go-1.15.2-darwin-x64.tar.gz",
"arch": "x64",
"platform": "darwin",
"download_url": "https://github.com/actions/go-versions/releases/download/1.15.2-247587753/go-1.15.2-darwin-x64.tar.gz"
},
{
"filename": "go-1.15.2-linux-x64.tar.gz",
"arch": "x64",
"platform": "linux",
"download_url": "https://github.com/actions/go-versions/releases/download/1.15.2-247587753/go-1.15.2-linux-x64.tar.gz"
},
{
"filename": "go-1.15.2-win32-x64.zip",
"arch": "x64",
"platform": "win32",
"download_url": "https://github.com/actions/go-versions/releases/download/1.15.2-247587753/go-1.15.2-win32-x64.zip"
}
]
},
{
"version": "1.15.1",
"stable": true,
"release_url": "https://github.com/actions/go-versions/releases/tag/1.15.1-235947634",
"files": [
{
"filename": "go-1.15.1-darwin-x64.tar.gz",
"arch": "x64",
"platform": "darwin",
"download_url": "https://github.com/actions/go-versions/releases/download/1.15.1-235947634/go-1.15.1-darwin-x64.tar.gz"
},
{
"filename": "go-1.15.1-linux-x64.tar.gz",
"arch": "x64",
"platform": "linux",
"download_url": "https://github.com/actions/go-versions/releases/download/1.15.1-235947634/go-1.15.1-linux-x64.tar.gz"
},
{
"filename": "go-1.15.1-win32-x64.zip",
"arch": "x64",
"platform": "win32",
"download_url": "https://github.com/actions/go-versions/releases/download/1.15.1-235947634/go-1.15.1-win32-x64.zip"
}
]
},
{ {
"version": "1.15.0", "version": "1.15.0",
"stable": true, "stable": true,
@@ -24,6 +299,206 @@
} }
] ]
}, },
{
"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,
"release_url": "https://github.com/actions/go-versions/releases/tag/1.14.12-361110298",
"files": [
{
"filename": "go-1.14.12-darwin-x64.tar.gz",
"arch": "x64",
"platform": "darwin",
"download_url": "https://github.com/actions/go-versions/releases/download/1.14.12-361110298/go-1.14.12-darwin-x64.tar.gz"
},
{
"filename": "go-1.14.12-linux-x64.tar.gz",
"arch": "x64",
"platform": "linux",
"download_url": "https://github.com/actions/go-versions/releases/download/1.14.12-361110298/go-1.14.12-linux-x64.tar.gz"
},
{
"filename": "go-1.14.12-win32-x64.zip",
"arch": "x64",
"platform": "win32",
"download_url": "https://github.com/actions/go-versions/releases/download/1.14.12-361110298/go-1.14.12-win32-x64.zip"
}
]
},
{
"version": "1.14.11",
"stable": true,
"release_url": "https://github.com/actions/go-versions/releases/tag/1.14.11-349059275",
"files": [
{
"filename": "go-1.14.11-darwin-x64.tar.gz",
"arch": "x64",
"platform": "darwin",
"download_url": "https://github.com/actions/go-versions/releases/download/1.14.11-349059275/go-1.14.11-darwin-x64.tar.gz"
},
{
"filename": "go-1.14.11-linux-x64.tar.gz",
"arch": "x64",
"platform": "linux",
"download_url": "https://github.com/actions/go-versions/releases/download/1.14.11-349059275/go-1.14.11-linux-x64.tar.gz"
},
{
"filename": "go-1.14.11-win32-x64.zip",
"arch": "x64",
"platform": "win32",
"download_url": "https://github.com/actions/go-versions/releases/download/1.14.11-349059275/go-1.14.11-win32-x64.zip"
}
]
},
{
"version": "1.14.10",
"stable": true,
"release_url": "https://github.com/actions/go-versions/releases/tag/1.14.10-308043811",
"files": [
{
"filename": "go-1.14.10-darwin-x64.tar.gz",
"arch": "x64",
"platform": "darwin",
"download_url": "https://github.com/actions/go-versions/releases/download/1.14.10-308043811/go-1.14.10-darwin-x64.tar.gz"
},
{
"filename": "go-1.14.10-linux-x64.tar.gz",
"arch": "x64",
"platform": "linux",
"download_url": "https://github.com/actions/go-versions/releases/download/1.14.10-308043811/go-1.14.10-linux-x64.tar.gz"
},
{
"filename": "go-1.14.10-win32-x64.zip",
"arch": "x64",
"platform": "win32",
"download_url": "https://github.com/actions/go-versions/releases/download/1.14.10-308043811/go-1.14.10-win32-x64.zip"
}
]
},
{
"version": "1.14.9",
"stable": true,
"release_url": "https://github.com/actions/go-versions/releases/tag/1.14.9-247587858",
"files": [
{
"filename": "go-1.14.9-darwin-x64.tar.gz",
"arch": "x64",
"platform": "darwin",
"download_url": "https://github.com/actions/go-versions/releases/download/1.14.9-247587858/go-1.14.9-darwin-x64.tar.gz"
},
{
"filename": "go-1.14.9-linux-x64.tar.gz",
"arch": "x64",
"platform": "linux",
"download_url": "https://github.com/actions/go-versions/releases/download/1.14.9-247587858/go-1.14.9-linux-x64.tar.gz"
},
{
"filename": "go-1.14.9-win32-x64.zip",
"arch": "x64",
"platform": "win32",
"download_url": "https://github.com/actions/go-versions/releases/download/1.14.9-247587858/go-1.14.9-win32-x64.zip"
}
]
},
{
"version": "1.14.8",
"stable": true,
"release_url": "https://github.com/actions/go-versions/releases/tag/1.14.8-235947802",
"files": [
{
"filename": "go-1.14.8-darwin-x64.tar.gz",
"arch": "x64",
"platform": "darwin",
"download_url": "https://github.com/actions/go-versions/releases/download/1.14.8-235947802/go-1.14.8-darwin-x64.tar.gz"
},
{
"filename": "go-1.14.8-linux-x64.tar.gz",
"arch": "x64",
"platform": "linux",
"download_url": "https://github.com/actions/go-versions/releases/download/1.14.8-235947802/go-1.14.8-linux-x64.tar.gz"
},
{
"filename": "go-1.14.8-win32-x64.zip",
"arch": "x64",
"platform": "win32",
"download_url": "https://github.com/actions/go-versions/releases/download/1.14.8-235947802/go-1.14.8-win32-x64.zip"
}
]
},
{ {
"version": "1.14.7", "version": "1.14.7",
"stable": true, "stable": true,