Skip to content

Commit df86716

Browse files
authored
Release GCM 2.5 (#1587)
**Changes:** - Fixes to install from source script (#1469) - Use Avalonia generated view code (#14790 - Various GitHub Actions updates (#1473, #1483, #1487, #1486, #1488, #1528, #1547) - Fix bug in Azure Repos URL handling (#1522) - Add Azure Managed Identity and SP docs (#1548) - Fix error messages when using GCM outside of repo (#1561, #1583) - Remove ESRP (#1571) - Update to .NET 8 for Mac and Linux (#1579, #1580) - Fix Alpine install from source script (#1582)
2 parents 38ad745 + 47d2e56 commit df86716

File tree

62 files changed

+406
-498
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+406
-498
lines changed

.github/run_esrp_signing.py

Lines changed: 0 additions & 135 deletions
This file was deleted.

.github/set_up_esrp.ps1

Lines changed: 0 additions & 12 deletions
This file was deleted.

.github/workflows/codeql-analysis.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,19 @@ jobs:
2424
steps:
2525
- uses: actions/checkout@v4
2626

27+
- name: Setup .NET
28+
uses: actions/[email protected]
29+
with:
30+
dotnet-version: 8.0.x
31+
2732
# Initializes the CodeQL tools for scanning.
2833
- name: Initialize CodeQL
29-
uses: github/codeql-action/init@v2
34+
uses: github/codeql-action/init@v3
3035
with:
3136
languages: ${{ matrix.language }}
3237

3338
- run: |
3439
dotnet build
3540
3641
- name: Perform CodeQL Analysis
37-
uses: github/codeql-action/analyze@v2
42+
uses: github/codeql-action/analyze@v3

.github/workflows/continuous-integration.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ jobs:
1919
- uses: actions/checkout@v4
2020

2121
- name: Setup .NET
22-
uses: actions/setup-dotnet@v3.2.0
22+
uses: actions/setup-dotnet@v4.0.0
2323
with:
24-
dotnet-version: 6.0.201
24+
dotnet-version: 8.0.x
2525

2626
- name: Install dependencies
2727
run: dotnet restore
@@ -42,7 +42,7 @@ jobs:
4242
mv out/windows/Installer.Windows/bin/Release/net472/gcm*.exe artifacts/
4343
4444
- name: Upload artifacts
45-
uses: actions/upload-artifact@v3
45+
uses: actions/upload-artifact@v4
4646
with:
4747
name: win-x86
4848
path: |
@@ -59,9 +59,9 @@ jobs:
5959
- uses: actions/checkout@v4
6060

6161
- name: Setup .NET
62-
uses: actions/setup-dotnet@v3.2.0
62+
uses: actions/setup-dotnet@v4.0.0
6363
with:
64-
dotnet-version: 6.0.201
64+
dotnet-version: 8.0.x
6565

6666
- name: Install dependencies
6767
run: dotnet restore
@@ -80,7 +80,7 @@ jobs:
8080
mv out/linux/Packaging.Linux/Release/tar/*.tar.gz artifacts/
8181
8282
- name: Upload artifacts
83-
uses: actions/upload-artifact@v3
83+
uses: actions/upload-artifact@v4
8484
with:
8585
name: linux-x64
8686
path: |
@@ -100,9 +100,9 @@ jobs:
100100
- uses: actions/checkout@v4
101101

102102
- name: Setup .NET
103-
uses: actions/setup-dotnet@v3.2.0
103+
uses: actions/setup-dotnet@v4.0.0
104104
with:
105-
dotnet-version: 6.0.201
105+
dotnet-version: 8.0.x
106106

107107
- name: Install dependencies
108108
run: dotnet restore
@@ -125,7 +125,7 @@ jobs:
125125
mv out/osx/Installer.Mac/pkg/Release/gcm*.pkg artifacts/
126126
127127
- name: Upload artifacts
128-
uses: actions/upload-artifact@v3
128+
uses: actions/upload-artifact@v4
129129
with:
130130
name: ${{ matrix.runtime }}
131131
path: |

.github/workflows/lint-docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
steps:
2121
- uses: actions/checkout@v4
2222

23-
- uses: DavidAnson/markdownlint-cli2-action@ed4dec634fd2ef689c7061d5647371d8248064f1
23+
- uses: DavidAnson/markdownlint-cli2-action@b4c9feab76d8025d1e83c653fa3990936df0e6c8
2424
with:
2525
globs: |
2626
"**/*.md"
@@ -35,7 +35,7 @@ jobs:
3535
- name: Run link checker
3636
# For any troubleshooting, see:
3737
# https://github.com/lycheeverse/lychee/blob/master/docs/TROUBLESHOOTING.md
38-
uses: lycheeverse/lychee-action@ec3ed119d4f44ad2673a7232460dc7dff59d2421
38+
uses: lycheeverse/lychee-action@c053181aa0c3d17606addfe97a9075a32723548a
3939

4040
with:
4141
# user-agent: if a user agent is not specified, some websites (e.g.

.github/workflows/maintainer-absence.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
name: create-issue
1919
runs-on: ubuntu-latest
2020
steps:
21-
- uses: actions/github-script@v6
21+
- uses: actions/github-script@v7
2222
with:
2323
script: |
2424
const startDate = new Date('${{ github.event.inputs.startDate }}');

0 commit comments

Comments
 (0)