Skip to content

Commit

Permalink
Latest versions of actions
Browse files Browse the repository at this point in the history
  • Loading branch information
josephmyers committed Aug 30, 2024
1 parent d66770d commit 1303d75
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/Installer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,20 +16,20 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2.3.4
uses: actions/checkout@v4
with:
submodules: recursive
fetch-depth: 0

# Install the .NET Core workload
- name: Install .NET Core
uses: actions/setup-dotnet@v1
uses: actions/setup-dotnet@v4
with:
dotnet-version: 5.0.x

# Add MSBuild to the PATH: https://github.com/microsoft/setup-msbuild
- name: Setup MSBuild.exe (Windows OS)
uses: microsoft/setup-msbuild@v1.0.2
uses: microsoft/setup-msbuild@v2
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: true # So the PATH can be set by this step
if: ${{ matrix.os == 'windows-2019' }}
Expand All @@ -47,7 +47,7 @@ jobs:
run: msbuild build/Installer.targets /p:Configuration=Release /p:Platform=x86 /t:BuildRelease

- name: Publish Installer
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: WeSayInstallers
path: BuildDir/WeSay*.exe

0 comments on commit 1303d75

Please sign in to comment.