Add Ubuntu 20.04 to supported platforms (#463)
Co-authored-by: Casey Lee <cplee@nektos.com>
This commit is contained in:
parent
f86a4326a8
commit
fecc571bce
2 changed files with 2 additions and 0 deletions
|
@ -118,6 +118,7 @@ GitHub Actions offers managed [virtual environments](https://help.github.com/en/
|
||||||
| GitHub Runner | Docker Image |
|
| GitHub Runner | Docker Image |
|
||||||
| -------------- | ----------------------------------------------------------------- |
|
| -------------- | ----------------------------------------------------------------- |
|
||||||
| ubuntu-latest | [node:12.6-buster-slim](https://hub.docker.com/_/buildpack-deps) |
|
| ubuntu-latest | [node:12.6-buster-slim](https://hub.docker.com/_/buildpack-deps) |
|
||||||
|
| ubuntu-20.04 | [node:12.6-buster-slim](https://hub.docker.com/_/buildpack-deps) |
|
||||||
| ubuntu-18.04 | [node:12.6-buster-slim](https://hub.docker.com/_/buildpack-deps) |
|
| ubuntu-18.04 | [node:12.6-buster-slim](https://hub.docker.com/_/buildpack-deps) |
|
||||||
| ubuntu-16.04 | [node:12.6-stretch-slim](https://hub.docker.com/_/buildpack-deps) |
|
| ubuntu-16.04 | [node:12.6-stretch-slim](https://hub.docker.com/_/buildpack-deps) |
|
||||||
| windows-latest | `unsupported` |
|
| windows-latest | `unsupported` |
|
||||||
|
|
|
@ -7,6 +7,7 @@ import (
|
||||||
func (i *Input) newPlatforms() map[string]string {
|
func (i *Input) newPlatforms() map[string]string {
|
||||||
platforms := map[string]string{
|
platforms := map[string]string{
|
||||||
"ubuntu-latest": "node:12.6-buster-slim",
|
"ubuntu-latest": "node:12.6-buster-slim",
|
||||||
|
"ubuntu-20.04": "node:12.6-buster-slim",
|
||||||
"ubuntu-18.04": "node:12.6-buster-slim",
|
"ubuntu-18.04": "node:12.6-buster-slim",
|
||||||
"ubuntu-16.04": "node:12.6-stretch-slim",
|
"ubuntu-16.04": "node:12.6-stretch-slim",
|
||||||
"windows-latest": "",
|
"windows-latest": "",
|
||||||
|
|
Loading…
Reference in a new issue