Browse Source

Update action dependencies

Daniel Chalmers 1 year ago
parent
commit
ddeab63fcb
1 changed files with 2 additions and 2 deletions
  1. 2 2
      .github/actions/prepare-for-release/action.yml

+ 2 - 2
.github/actions/prepare-for-release/action.yml

@@ -5,7 +5,7 @@ description: Builds, tests, and creates an installer that's ready for release.
 runs:
   using: "composite"
   steps:
-    - uses: actions/setup-dotnet@v2
+    - uses: actions/setup-dotnet@v4
 
     - name: Build
       shell: bash
@@ -22,7 +22,7 @@ runs:
     - name: Create installer
       shell: bash
       run: |
-        dotnet tool install --global wix --version 4.0.3
+        dotnet tool install --global wix --version 4.0.5
         wix build Product.wxs -o "publish/Install DesktopClock.msi"
 
     - uses: actions/upload-artifact@v4