Skip to content

Commit

Permalink
Use latest ubuntu image to fix gitlab pipelines
Browse files Browse the repository at this point in the history
  • Loading branch information
QuinnBast committed May 12, 2023
1 parent e0825d9 commit 17c05d3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/DeployRelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
# This workflow contains a single job called "build"
unitTest:
# The type of runner that the job will run on
runs-on: ubuntu-18.04
runs-on: ubuntu-22.04
# The container image to pull from dockerhub
container: mcr.microsoft.com/dotnet/sdk:7.0

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/TestDll.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
# This workflow contains a single job called "build"
unitTest:
# The type of runner that the job will run on
runs-on: ubuntu-18.04
runs-on: ubuntu-22.04
# The container image to pull
container: mcr.microsoft.com/dotnet/sdk:7.0

Expand All @@ -29,7 +29,7 @@ jobs:
run: dotnet test "Core/SubterfugeCoreTest/SubterfugeCoreTest.csproj"
# A step to build docfx documents using a differnt container with docfx installed
gen-docs:
runs-on: ubuntu-18.04
runs-on: ubuntu-22.04
container: erothejoker/docker-docfx:latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/TestServer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
# This workflow contains a single job called "build"
testServer:
# The type of runner that the job will run on
runs-on: ubuntu-18.04
runs-on: ubuntu-22.04

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
Expand Down

0 comments on commit 17c05d3

Please sign in to comment.