Skip to content

Commit 8342561

Browse files
committed
Update actions/checkout and actions/setup-dotnet.
1 parent 78b5345 commit 8342561

2 files changed

Lines changed: 4 additions & 5 deletions

File tree

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@ jobs:
2626
runs-on: ${{ matrix.os }}
2727
steps:
2828
- name: Clone repository
29-
uses: actions/checkout@v2.4.0
29+
uses: actions/checkout@v3.0.0
3030
with:
3131
fetch-depth: 0
3232
submodules: recursive
3333
- name: Set up .NET
34-
uses: actions/setup-dotnet@v1.8.2
34+
uses: actions/setup-dotnet@v2.0.0
3535
- name: Build project
3636
run: |
3737
dotnet tool restore

.github/workflows/release.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,19 +11,18 @@ env:
1111
DOTNET_CLI_TELEMETRY_OPTOUT: true
1212
DOTNET_GENERATE_ASPNET_CERTIFICATE: false
1313
DOTNET_NOLOGO: true
14-
NUKE_TELEMETRY_OPTOUT: true
1514
jobs:
1615
release:
1716
if: github.repository == 'alexrp/system-terminal'
1817
runs-on: ubuntu-latest
1918
steps:
2019
- name: Clone repository
21-
uses: actions/checkout@v2.4.0
20+
uses: actions/checkout@v3.0.0
2221
with:
2322
fetch-depth: 0
2423
submodules: recursive
2524
- name: Set up .NET
26-
uses: actions/setup-dotnet@v1.8.2
25+
uses: actions/setup-dotnet@v2.0.0
2726
- name: Build project
2827
run: |
2928
dotnet tool restore

0 commit comments

Comments
 (0)