Skip to content

Commit

Permalink
ci: specify ubuntu version to make github action happy
Browse files Browse the repository at this point in the history
  • Loading branch information
oilbeater committed Nov 26, 2020
1 parent 73b9f84 commit e3082cd
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-arm64-image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ on:
jobs:
build:
name: Build arm64
runs-on: ubuntu-latest
runs-on: ubuntu-18.04
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-dpdk-image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ on:
jobs:
build:
name: Build DPDK
runs-on: ubuntu-latest
runs-on: ubuntu-18.04
steps:
- name: Check out code
uses: actions/checkout@v2
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/build-x86-image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ on:
jobs:
build:
name: Build x86
runs-on: ubuntu-latest
runs-on: ubuntu-18.04
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
Expand Down Expand Up @@ -78,7 +78,7 @@ jobs:
single-e2e:
needs: build
name: 1-master-e2e
runs-on: ubuntu-latest
runs-on: ubuntu-18.04
steps:
- name: Check out code
uses: actions/checkout@v2
Expand Down Expand Up @@ -124,7 +124,7 @@ jobs:
ha-e2e:
needs: build
name: 3-master-e2e
runs-on: ubuntu-latest
runs-on: ubuntu-18.04
steps:
- name: Check out code
uses: actions/checkout@v2
Expand Down Expand Up @@ -171,7 +171,7 @@ jobs:
ipv6-e2e:
needs: build
name: ipv6-e2e
runs-on: ubuntu-latest
runs-on: ubuntu-18.04
steps:
- name: Check out code
uses: actions/checkout@v2
Expand Down Expand Up @@ -207,7 +207,7 @@ jobs:
push:
needs: [single-e2e, ha-e2e, ipv6-e2e]
name: push
runs-on: ubuntu-latest
runs-on: ubuntu-18.04
steps:
- name: Check out code
uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ on:
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
runs-on: ubuntu-18.04

strategy:
fail-fast: false
Expand Down

0 comments on commit e3082cd

Please sign in to comment.