Skip to content

Commit 7d3fc8d

Browse files
committed
Add workaround for failing CI
1 parent 19af070 commit 7d3fc8d

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.github/workflows/ci.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,11 @@ concurrency:
1111
group: ${{ github.workflow }}-${{ github.ref }}
1212
cancel-in-progress: true
1313

14+
env:
15+
# Workaround for https://github.com/dotnet/format/issues/1805 which affects the lint action
16+
DOTNET_INSTALL_DIR: .temp/dotnet
17+
DOTNET_ROOT: .temp/dotnet
18+
1419
jobs:
1520
main:
1621
name: CI

global.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"sdk": {
33
"version": "7.0.100",
44
"allowPrerelease": false,
5-
"rollForward": "latestFeature"
5+
"rollForward": "latestMinor",
6+
"_rollForward": "Workaround for https://github.com/dotnet/format/issues/1805 [TODO: use 'latestFeature' instead]"
67
}
78
}

0 commit comments

Comments
 (0)