Skip to content

Commit

Permalink
Fixes ci to use ubuntu-20.04
Browse files Browse the repository at this point in the history
  • Loading branch information
xoofx committed Oct 5, 2023
1 parent 6dcbec7 commit 5747489
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:

jobs:
build:
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04

steps:
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion src/LibObjectFile.Tests/LinuxUtil.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public static string ReadElf(string file, string arguments = "-W -a")
return RunLinuxExe("readelf", $"{file} {arguments}");
}

public static string RunLinuxExe(string exe, string arguments, string distribution = "Ubuntu-18.04")
public static string RunLinuxExe(string exe, string arguments, string distribution = "Ubuntu-20.04")
{
if (exe == null) throw new ArgumentNullException(nameof(exe));
if (arguments == null) throw new ArgumentNullException(nameof(arguments));
Expand Down

0 comments on commit 5747489

Please sign in to comment.