Skip to content

Commit 0b0881a

Browse files
replace deprecated ubuntu 18 with 20 (#1484)
1 parent a42a1ab commit 0b0881a

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

.github/workflows/build.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
# ###[error] natupnp_test.go:165: not discovered
2424
# must be sommething with Github Actions VM networking setup.
2525
# Event Ubuntu requires a workaround
26-
os: [ "ubuntu-18.04" ]
26+
os: [ "ubuntu-20.04" ]
2727
env:
2828
QUORUM_IGNORE_TEST_PACKAGES: github.com/ethereum/go-ethereum/les,github.com/ethereum/go-ethereum/les/flowcontrol,github.com/ethereum/go-ethereum/mobile
2929
runs-on: ${{ matrix.os }}
@@ -51,7 +51,7 @@ jobs:
5151
make test all
5252
docker-build:
5353
name: 'Build Docker image'
54-
runs-on: ubuntu-18.04
54+
runs-on: ubuntu-20.04
5555
steps:
5656
- name: 'Check out project files'
5757
uses: actions/checkout@v2
@@ -123,7 +123,7 @@ jobs:
123123
- 'mps-mixed-network-psr-check || networks/template::istanbul-4nodes-mps-mixed'
124124
- '(basic && !nosupport && !mps && !(spam && !raw) && !eth-api-signed && !privacy-enhancements-disabled && !graphql && !async && !extension && !storage-root && !personal-api-signed) || networks/typical-besu::ibft2'
125125
- '(basic && !nosupport && !mps && !(spam && !raw) && !eth-api-signed && !privacy-enhancements-disabled && !graphql && !async && !extension && !storage-root && !personal-api-signed) || networks/typical-hybrid::hybrid'
126-
runs-on: ubuntu-18.04
126+
runs-on: ubuntu-20.04
127127
steps:
128128
- name: 'Download workflow artifact - Docker image'
129129
uses: actions/download-artifact@v1
@@ -235,7 +235,7 @@ jobs:
235235
privacy-enhancements: false
236236
privacy-precompile: true
237237
privacy-marker-transactions: false # do not enable pmts as the test will do this on the necessary nodes
238-
runs-on: ubuntu-18.04
238+
runs-on: ubuntu-20.04
239239
steps:
240240
- name: 'Download workflow artifact - Docker image'
241241
uses: actions/download-artifact@v1
@@ -274,7 +274,7 @@ jobs:
274274
name: Run PEEPS tests
275275
needs:
276276
- docker-build
277-
runs-on: ubuntu-18.04
277+
runs-on: ubuntu-20.04
278278
steps:
279279
- name: 'Checkout'
280280
uses: actions/checkout@v2
@@ -313,7 +313,7 @@ jobs:
313313
- build
314314
- acceptance-tests-basic
315315
- acceptance-tests-extra
316-
runs-on: ubuntu-18.04
316+
runs-on: ubuntu-20.04
317317
steps:
318318
- name: 'Checkout'
319319
uses: actions/checkout@v2
@@ -331,7 +331,7 @@ jobs:
331331
needs:
332332
- build
333333
- publish-docker
334-
runs-on: ubuntu-18.04
334+
runs-on: ubuntu-20.04
335335
steps:
336336
- name: 'Setup metadata'
337337
id: setup

.github/workflows/pr.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ env:
1010
jobs:
1111
lint:
1212
name: 'Code linters'
13-
runs-on: ubuntu-18.04
13+
runs-on: ubuntu-20.04
1414
steps:
1515
- name: 'Setup Go ${{ env.GO_VERSION }}'
1616
uses: actions/setup-go@v1
@@ -31,7 +31,7 @@ jobs:
3131
strategy:
3232
fail-fast: false
3333
matrix:
34-
os: ["ubuntu-18.04"]
34+
os: ["ubuntu-20.04"]
3535
env:
3636
QUORUM_IGNORE_TEST_PACKAGES: github.com/ethereum/go-ethereum/les,github.com/ethereum/go-ethereum/les/flowcontrol,github.com/ethereum/go-ethereum/mobile
3737
runs-on: ${{ matrix.os }}
@@ -55,7 +55,7 @@ jobs:
5555
make test
5656
docker-build:
5757
name: 'Build Docker image'
58-
runs-on: ubuntu-18.04
58+
runs-on: ubuntu-20.04
5959
steps:
6060
- name: 'Check out project files'
6161
uses: actions/checkout@v2
@@ -77,7 +77,7 @@ jobs:
7777
name: Run PEEPS tests
7878
needs:
7979
- docker-build
80-
runs-on: ubuntu-18.04
80+
runs-on: ubuntu-20.04
8181
steps:
8282
- name: 'Checkout'
8383
uses: actions/checkout@v2
@@ -132,7 +132,7 @@ jobs:
132132
- 'basic || networks/typical::raftmps'
133133
- 'basic || networks/typical::istanbulmps'
134134
- 'basic || networks/typical::qbftmps'
135-
runs-on: ubuntu-18.04
135+
runs-on: ubuntu-20.04
136136
steps:
137137
- name: 'Download workflow artifact - Docker image'
138138
uses: actions/download-artifact@v1

0 commit comments

Comments
 (0)