Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .config/dotnet-tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
]
},
"fsharp-analyzers": {
"version": "0.36.0",
"version": "0.35.0",
"commands": [
"fsharp-analyzers"
]
Expand Down
22 changes: 11 additions & 11 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
dotnet-version: "10.0.x"
global-json-file: global.json

- name: Restore tools
run: dotnet tool restore
Expand All @@ -42,7 +42,7 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
dotnet-version: "10.0.x"
global-json-file: global.json

- name: Restore project
run: dotnet restore Fable.sln
Expand All @@ -60,7 +60,7 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
dotnet-version: "10.0.x"
global-json-file: global.json

- name: Setup Node.js environment
uses: actions/setup-node@v5
Expand All @@ -83,7 +83,7 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
dotnet-version: "10.0.x"
global-json-file: global.json

- name: Setup Node.js environment
uses: actions/setup-node@v5
Expand All @@ -104,7 +104,7 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
dotnet-version: "10.0.x"
global-json-file: global.json

- name: Setup Node.js environment
uses: actions/setup-node@v5
Expand All @@ -122,7 +122,7 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
dotnet-version: "10.0.x"
global-json-file: global.json

- name: Setup Node.js environment
uses: actions/setup-node@v5
Expand All @@ -146,7 +146,7 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
dotnet-version: "10.0.x"
global-json-file: global.json

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
Expand Down Expand Up @@ -187,7 +187,7 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
dotnet-version: "10.0.x"
global-json-file: global.json

- name: Setup Node.js environment
uses: actions/setup-node@v5
Expand All @@ -213,7 +213,7 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
dotnet-version: "10.0.x"
global-json-file: global.json

- name: Setup Dart SDK
uses: dart-lang/setup-dart@v1
Expand All @@ -231,7 +231,7 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
dotnet-version: "10.0.x"
global-json-file: global.json

- name: Setup Erlang/OTP
uses: erlef/setup-beam@v1
Expand Down Expand Up @@ -262,7 +262,7 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
dotnet-version: "10.0.x"
global-json-file: global.json

- name: Restore tools
run: dotnet tool restore
Expand Down
2 changes: 1 addition & 1 deletion src/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>build</IncludeAssets>
</PackageReference>
<PackageReference Include="G-Research.FSharp.Analyzers" Version="0.22.0">
<PackageReference Include="G-Research.FSharp.Analyzers" Version="0.21.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>analyzers</IncludeAssets>
</PackageReference>
Expand Down
2 changes: 1 addition & 1 deletion src/Fable.Analyzers/Fable.Analyzers.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="FSharp.Analyzers.SDK" Version="0.36.0"/>
<PackageReference Include="FSharp.Analyzers.SDK" Version="0.35.0"/>
</ItemGroup>

</Project>
Loading