Skip to content

Commit

Permalink
Update .NET version in GitLab actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Tarmil committed Nov 2, 2023
1 parent d5185b3 commit a80aa3a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Setup dotnet
uses: actions/setup-dotnet@v1
with:
dotnet-version: '8.0.100-preview.7.23376.3'
dotnet-version: '8.0.100-rc.2.23502.2'

- name: NuGet cache
uses: actions/cache@v1
Expand All @@ -32,6 +32,8 @@ jobs:
if echo "${{github.ref}}" | grep -q "^refs/heads/"; then
git checkout "$(echo ${{github.ref}} | sed -E 's|^refs/heads/||')";
fi
# Bad data in tool resolver cache can cause tools to not be found
rm -rf ~/.dotnet/toolResolverCache
# Ensure that the selenium chrome driver matches the installed chrome
./build.ps1 -t update-chromedriver
# Build
Expand Down Expand Up @@ -59,7 +61,7 @@ jobs:
- name: Setup dotnet
uses: actions/setup-dotnet@v1
with:
dotnet-version: '8.0.100-preview.7.23376.3'
dotnet-version: '8.0.100-rc.2.23502.2'

- name: Download nupkg
uses: actions/download-artifact@v1
Expand All @@ -83,7 +85,7 @@ jobs:
- name: Setup dotnet
uses: actions/setup-dotnet@v1
with:
dotnet-version: '8.0.100-preview.7.23376.3'
dotnet-version: '8.0.100-rc.2.23502.2'

- name: Prepare
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- name: Setup dotnet
uses: actions/setup-dotnet@v1
with:
dotnet-version: '7.0.100'
dotnet-version: '8.0.100-rc.2.23502.2'

- name: Download nupkg
uses: dawidd6/action-download-artifact@v2
Expand Down
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"sdk": {
"version": "8.0.100-preview.7.23376.3",
"version": "8.0.100-rc.2.23502.2",
"rollForward": "latestFeature"
}
}

0 comments on commit a80aa3a

Please sign in to comment.