Skip to content

Commit 5747489

Browse files
committed
Fixes ci to use ubuntu-20.04
1 parent 6dcbec7 commit 5747489

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/CI.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010

1111
jobs:
1212
build:
13-
runs-on: ubuntu-18.04
13+
runs-on: ubuntu-20.04
1414

1515
steps:
1616
- name: Checkout

src/LibObjectFile.Tests/LinuxUtil.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public static string ReadElf(string file, string arguments = "-W -a")
1717
return RunLinuxExe("readelf", $"{file} {arguments}");
1818
}
1919

20-
public static string RunLinuxExe(string exe, string arguments, string distribution = "Ubuntu-18.04")
20+
public static string RunLinuxExe(string exe, string arguments, string distribution = "Ubuntu-20.04")
2121
{
2222
if (exe == null) throw new ArgumentNullException(nameof(exe));
2323
if (arguments == null) throw new ArgumentNullException(nameof(arguments));

0 commit comments

Comments
 (0)