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
6 changes: 3 additions & 3 deletions .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v5
- name: Dotnet Setup
uses: actions/setup-dotnet@v3
uses: actions/setup-dotnet@v5
with:
dotnet-version: 8.x

Expand All @@ -38,7 +38,7 @@ jobs:
docfx docs/docfx.json

- name: Upload artifact
uses: actions/upload-pages-artifact@v3
uses: actions/upload-pages-artifact@v4
with:
# Upload entire repository
path: 'docs/_site'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/spellcheck.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:
run:
working-directory: '.'
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
name: 🧾 Checkout

- uses: streetsidesoftware/cspell-action@v6
- uses: streetsidesoftware/cspell-action@v7
name: 📝 Check Spelling
with:
config: './cspell.json'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/version_change.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: '🧾 Checkout'
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: '📝 Change Version'
uses: vers-one/dotnet-project-version-updater@v1.7
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/visual_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
shell: bash
steps:
- name: 🧾 Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
# If using git-lfs (large file storage), this ensures that your files
# are checked out properly.
Expand All @@ -38,7 +38,7 @@ jobs:
submodules: 'recursive'

- name: 💽 Setup .NET SDK
uses: actions/setup-dotnet@v4
uses: actions/setup-dotnet@v5
with:
# Use the .NET SDK from global.json in the root of the repository.
global-json-file: global.json
Expand Down
2 changes: 1 addition & 1 deletion OpenPolytopia/OpenPolytopia.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
<ItemGroup Condition=" '$(Configuration)' == 'Debug' or '$(Configuration)' == 'ExportDebug' ">
<!-- Test dependencies go here! -->
<!-- Dependencies added here will not be included in release builds. -->
<PackageReference Include="Chickensoft.GoDotTest" Version="1.7.6" />
<PackageReference Include="Chickensoft.GoDotTest" Version="2.0.19" />
<!-- Used to drive test scenes when testing visual code -->
<PackageReference Include="Chickensoft.GodotTestDriver" Version="3.1.44" />
<!-- Bring your own assertion library for tests! -->
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.415",
"version": "9.0.306",
"rollForward": "major"
},
"msbuild-sdks": {
Expand Down