Compare commits

...

15 Commits

Author SHA1 Message Date
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
5 changed files with 230 additions and 4 deletions

1
.github/CODEOWNERS vendored Normal file
View File

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

View File

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

View File

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

View File

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

View File

@@ -1,4 +1,129 @@
[
{
"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.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,
@@ -124,6 +249,106 @@
}
]
},
{
"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,