Skip to content

Commit 96dba50

Browse files
authored
Update main.yml to support latest ubuntu (#315)
GitHub stopped supporting Ubuntu 18.04 on April 1, 2023,: actions/runner-images#6002
1 parent fac5b86 commit 96dba50

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
unitAndFunctionalTests:
2020
if: github.repository == 'eiffel-community/eiffel-intelligence-frontend'
2121
# The type of runner that the job will run on
22-
runs-on: ubuntu-18.04
22+
runs-on: ubuntu-latest
2323
env:
2424
EI_BACKEND_PORT: 8099
2525
M2_HOME: /opt/apache-maven-3.6.3
@@ -52,7 +52,7 @@ jobs:
5252
integrationTests:
5353
if: github.repository == 'eiffel-community/eiffel-intelligence-frontend'
5454
# The type of runner that the job will run on
55-
runs-on: ubuntu-18.04
55+
runs-on: ubuntu-latest
5656
env:
5757
EI_BACKEND_PORT: 8099
5858
M2_HOME: /opt/apache-maven-3.6.3
@@ -105,7 +105,7 @@ jobs:
105105
reportCoverage:
106106
if: github.repository == 'eiffel-community/eiffel-intelligence-frontend' && github.event_name == 'push'
107107
# The type of runner that the job will run on
108-
runs-on: ubuntu-18.04
108+
runs-on: ubuntu-latest
109109
env:
110110
EI_BACKEND_PORT: 8099
111111
M2_HOME: /opt/apache-maven-3.6.3

0 commit comments

Comments
 (0)