Skip to content

Commit f6e7f9d

Browse files
MichaelKoster70Michael Koster
andauthored
bugfix: update pipelines to use the most recent actions (#62)
* Updated actions * Extended CI build to trigger on bugfix branches * Update Release Notes * Update admin pipeline --------- Co-authored-by: Michael Koster <[email protected]>
1 parent c0769f9 commit f6e7f9d

File tree

6 files changed

+25
-20
lines changed

6 files changed

+25
-20
lines changed

.github/workflows/admin-cleanup.yml

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,33 +5,32 @@ on:
55
days:
66
description: 'Number of days.'
77
required: true
8-
default: 30
8+
default: '30'
99
minimum_runs:
1010
description: 'The minimum runs to keep for each workflow.'
1111
required: true
12-
default: 6
12+
default: '6'
1313
delete_workflow_pattern:
1414
description: 'The name or filename of the workflow. if not set then it will target all workflows.'
1515
required: false
16-
default: project-ci.yml
1716
delete_workflow_by_state_pattern:
1817
description: 'Remove workflow by state: active, deleted, disabled_fork, disabled_inactivity, disabled_manually'
1918
required: true
20-
default: "All"
19+
default: "ALL"
2120
type: choice
2221
options:
23-
- "All"
22+
- "ALL"
2423
- active
2524
- deleted
2625
- disabled_inactivity
2726
- disabled_manually
2827
delete_run_by_conclusion_pattern:
29-
description: 'Remove workflow by conclusion: action_required, cancelled, failure, skipped, success'
28+
description: 'Remove workflow by conclusion: action_required, canceled, failure, skipped, success'
3029
required: true
31-
default: "All"
30+
default: "ALL"
3231
type: choice
3332
options:
34-
- "All"
33+
- "ALL"
3534
- action_required
3635
- cancelled
3736
- failure
@@ -40,7 +39,6 @@ on:
4039
dry_run:
4140
description: 'Only log actions, do not perform any delete operations.'
4241
required: false
43-
default: false
4442
schedule:
4543
- cron: '0 0 1 * *'
4644
# Run monthly, at 00:00 on the 1st day of month.

.github/workflows/project-ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ on:
33
push:
44
branches:
55
- 'feature/**'
6+
- 'bugfix/**'
67

78
concurrency:
89
group: ${{ github.workflow }}-${{ github.ref }}

.github/workflows/project-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,11 @@ jobs:
3636

3737
steps:
3838
- name: Checkout
39-
uses: actions/checkout@v3
39+
uses: actions/checkout@v4
4040

4141
- name: Download artifacts
4242
id: download
43-
uses: actions/download-artifact@v3
43+
uses: actions/download-artifact@v4
4444
with:
4545
name: vsix
4646

.github/workflows/shared-build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
workflow_call:
55
inputs:
66
store-artifacts:
7-
description: 'Flag if artifacts sould be stored'
7+
description: 'Flag if artifacts should be stored'
88
type: boolean
99
required: true
1010
default: false
@@ -47,7 +47,7 @@ jobs:
4747

4848
steps:
4949
- name: Checkout
50-
uses: actions/checkout@v3
50+
uses: actions/checkout@v4
5151
with:
5252
fetch-depth: 0
5353

@@ -56,7 +56,7 @@ jobs:
5656
id: msbuild
5757
uses: microsoft/setup-msbuild@v2
5858
with:
59-
vs-version: '[17.2,17.12)'
59+
vs-version: '[17.2,17.15)'
6060
msbuild-architecture: x64
6161

6262
# Build Solution: determine and apply the version for the assemblies and VSIX package
@@ -119,14 +119,14 @@ jobs:
119119
shell: pwsh
120120

121121
- name: 'Store Artifacts: VSIX'
122-
uses: actions/upload-artifact@v3
122+
uses: actions/upload-artifact@v4
123123
if: ${{ inputs.store-artifacts }}
124124
with:
125125
name: vsix
126126
path: ${{ env.ExtensionOutputPath }}\*.vsix
127127

128128
- name: 'Store Artifacts: Binaries'
129-
uses: actions/upload-artifact@v3
129+
uses: actions/upload-artifact@v4
130130
if: ${{ inputs.store-artifacts }}
131131
with:
132132
name: binaries

RemoteDebuggerLauncherExtension.sln.GhostDoc.user.dic

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
aspnetcore
22
Blazor
3+
bugfix
34
chmod
45
coreclr
56
Ctrl
@@ -14,10 +15,14 @@ launchsettings
1415
localappdata
1516
Metadata
1617
mkdir
18+
msbuild
1719
msedge
20+
nuget
1821
omnisharp
1922
pkgdef
2023
plugin
24+
powershell
25+
pwsh
2126
runspace
2227
staticwebassets
2328
Statusbar
@@ -29,6 +34,7 @@ userprofile
2934
vscode
3035
vsct
3136
vsdbg
37+
vsix
3238
vsixmanifest
3339
vsui
3440
webtools

src/ReleaseNotes.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
## 0.12.0
2-
Add support for .NET 8
1+
## 0.12.1
2+
Bugfix release
33

44
### Features
5-
- Added support for .NET 8
5+
- None
66

77
### Bug Fixes
8-
- none
8+
- Fixed a bug failing to load SSH private keys in some cases.

0 commit comments

Comments
 (0)