Skip to content

Commit

Permalink
ci update checkout, setup-dotnet
Browse files Browse the repository at this point in the history
  • Loading branch information
jonthysell committed Sep 11, 2024
1 parent 6185086 commit a6a429e
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ jobs:
target: [Unpacked, Win32, Win64]
steps:
- name: Setup .NET
uses: actions/setup-dotnet@v1
uses: actions/setup-dotnet@v4
with:
dotnet-version: '6.0.x'

- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Build ${{ matrix.target }}
run: ${{ env.ScriptDir }}/Build${{ matrix.target }}.ps1
Expand All @@ -51,12 +51,12 @@ jobs:
target: [Linux]
steps:
- name: Setup .NET
uses: actions/setup-dotnet@v1
uses: actions/setup-dotnet@v4
with:
dotnet-version: '6.0.x'

- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Build ${{ matrix.target }}
run: ${{ env.ScriptDir }}/Build${{ matrix.target }}.ps1
Expand All @@ -78,12 +78,12 @@ jobs:
target: [MacOS]
steps:
- name: Setup .NET
uses: actions/setup-dotnet@v1
uses: actions/setup-dotnet@v4
with:
dotnet-version: '6.0.x'

- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Build ${{ matrix.target }}
run: ${{ env.ScriptDir }}/Build${{ matrix.target }}.ps1
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ jobs:
configuration: [Debug, Release]
steps:
- name: Setup .NET
uses: actions/setup-dotnet@v1
uses: actions/setup-dotnet@v4
with:
dotnet-version: '6.0.x'

- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Build Solution
run: dotnet build --configuration ${{ matrix.configuration }} ${{ env.SolutionFile }}
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/pub.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
upload_url: ${{ steps.create_release.outputs.upload_url }}
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Create Release Notes
run: ${{ env.ScriptDir }}/CreateReleaseNotes.ps1
Expand All @@ -49,12 +49,12 @@ jobs:
target: [Unpacked, Win32, Win64]
steps:
- name: Setup .NET
uses: actions/setup-dotnet@v1
uses: actions/setup-dotnet@v4
with:
dotnet-version: '6.0.x'

- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Build ${{ matrix.target }}
run: ${{ env.ScriptDir }}/Build${{ matrix.target }}.ps1
Expand All @@ -78,12 +78,12 @@ jobs:
target: [Linux]
steps:
- name: Setup .NET
uses: actions/setup-dotnet@v1
uses: actions/setup-dotnet@v4
with:
dotnet-version: '6.0.x'

- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Build ${{ matrix.target }}
run: ${{ env.ScriptDir }}/Build${{ matrix.target }}.ps1
Expand All @@ -107,12 +107,12 @@ jobs:
target: [MacOS]
steps:
- name: Setup .NET
uses: actions/setup-dotnet@v1
uses: actions/setup-dotnet@v4
with:
dotnet-version: '6.0.x'

- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Build ${{ matrix.target }}
run: ${{ env.ScriptDir }}/Build${{ matrix.target }}.ps1
Expand Down

0 comments on commit a6a429e

Please sign in to comment.