Remove ubuntu-16.04 and add missing links for nix/go (#821)

* fix: remove ubuntu-16.04

* fix: add missing links for nix/go

* fix: remove specific platform versions
This commit is contained in:
Ryan
2021-09-22 19:43:58 +00:00
committed by GitHub
parent aa080d0ed9
commit 17652ce80e
4 changed files with 19 additions and 32 deletions

View File

@@ -6,14 +6,9 @@ import (
func (i *Input) newPlatforms() map[string]string {
platforms := map[string]string{
"ubuntu-latest": "node:12-buster-slim",
"ubuntu-20.04": "node:12-buster-slim",
"ubuntu-18.04": "node:12-buster-slim",
"ubuntu-16.04": "node:12-stretch-slim",
"windows-latest": "",
"windows-2019": "",
"macos-latest": "",
"macos-10.15": "",
"ubuntu-latest": "node:12-buster-slim",
"ubuntu-20.04": "node:12-buster-slim",
"ubuntu-18.04": "node:12-buster-slim",
}
for _, p := range i.platforms {