diff options
author | FUJITA Tomonori <fujita.tomonori@gmail.com> | 2020-11-09 23:31:36 +0900 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@gmail.com> | 2020-11-09 23:31:36 +0900 |
commit | 9a5c7f32d305b0a8bbe2af984d9be0d9c7dc3688 (patch) | |
tree | 4c87f8f4996353f1fb8f4db345640a98b4ef1f5d /.github | |
parent | 3df131c6ba76626ebd223f512e1308193ca5e37c (diff) |
ci: use ubuntu 18.04 for all jobs
No need to use 16.04 for some.
Signed-off-by: FUJITA Tomonori <fujita.tomonori@gmail.com>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ci.yml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 71bdf135..ade5750d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,7 +5,7 @@ on: [pull_request] jobs: unit: name: unit - runs-on: ubuntu-16.04 + runs-on: ubuntu-18.04 steps: - uses: actions/checkout@master @@ -15,7 +15,7 @@ jobs: unit386: name: unit386 - runs-on: ubuntu-16.04 + runs-on: ubuntu-18.04 env: GOARCH: 386 steps: @@ -26,7 +26,7 @@ jobs: staticcheck: name: staticcheck - runs-on: ubuntu-16.04 + runs-on: ubuntu-18.04 steps: - uses: actions/checkout@master - run: | @@ -38,7 +38,7 @@ jobs: embeded: name: embeded - runs-on: ubuntu-16.04 + runs-on: ubuntu-18.04 steps: - uses: actions/checkout@master - run: | @@ -46,7 +46,7 @@ jobs: lintdoc: name: lintdoc - runs-on: ubuntu-16.04 + runs-on: ubuntu-18.04 steps: - uses: actions/checkout@master - run: | |