Skip to content

Commit

Permalink
fix: peg gh action to ubuntu 22.04
Browse files Browse the repository at this point in the history
  • Loading branch information
pnwpedro committed Oct 9, 2024
1 parent e2073aa commit 6f72123
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/6.0.x/global.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"sdk": {
"version": "6.0.x",
"rollForward": "latestFeature"
}
}
6 changes: 6 additions & 0 deletions .github/workflows/8.0.x/global.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"sdk": {
"version": "8.0.x",
"rollForward": "latestFeature"
}
}
5 changes: 2 additions & 3 deletions .github/workflows/pr_validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
jobs:
dotnet-test:

runs-on: ubuntu-latest
runs-on: ubuntu-22.04
strategy:
matrix:
dotnet-version: [ '6.0.x', '8.0.x' ]
Expand All @@ -23,10 +23,9 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Setup dotnet ${{ matrix.dotnet-version }}
uses: actions/setup-dotnet@v4
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ matrix.dotnet-version }}

- name: Restore dependencies
run: dotnet restore
- name: Build
Expand Down

0 comments on commit 6f72123

Please sign in to comment.