Skip to content

Commit

Permalink
Update Github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Numpsy authored and xperiandri committed Dec 11, 2023
1 parent c5f6b7d commit c054b2c
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_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ jobs:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Setup .NET 6
uses: actions/setup-dotnet@v1
uses: actions/setup-dotnet@v4
with:
dotnet-version: '6.0.101'
- name: Restore dotnet tools
Expand All @@ -27,7 +27,7 @@ jobs:
- name: Build
run: dotnet fake build --parallel 3
- name: publish build artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: fake-artifacts
path: release/artifacts
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ jobs:
runs-on: windows-latest
environment: Production
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Setup .NET 6
uses: actions/setup-dotnet@v1
uses: actions/setup-dotnet@v4
with:
dotnet-version: '6.0.101'
- name: Restore dotnet tools
Expand All @@ -31,7 +31,7 @@ jobs:
- name: Build
run: dotnet fake build -t Release_BuildAndTest --parallel 3
- name: publish build artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: fake-artifacts
path: release/artifacts
Expand Down

0 comments on commit c054b2c

Please sign in to comment.