Skip to content

Commit

Permalink
Update dependencies in pipelines
Browse files Browse the repository at this point in the history
  • Loading branch information
NicoVIII committed Nov 9, 2022
1 parent 3da512f commit 379ba7b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
dotnet: [6.0.200]
dotnet: [6.0.402]
runs-on: ${{ matrix.os }}

steps:
- name: Checkout code
uses: actions/checkout@v2
- uses: actions/setup-dotnet@v1
uses: actions/checkout@v3
- uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ matrix.dotnet }}
- name: Restore
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
dotnet: [6.0.200]
dotnet: [6.0.402]
runs-on: ${{ matrix.os }}

steps:
Expand All @@ -20,9 +20,9 @@ jobs:
echo ::set-output name=current_version::${GITHUB_REF#refs/tags/v}
shell: bash
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ matrix.dotnet }}
- name: Restore
Expand Down

0 comments on commit 379ba7b

Please sign in to comment.