Skip to content
Open
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 .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Dotnet Setup
uses: actions/setup-dotnet@v5
with:
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@v5
- uses: actions/checkout@v6
name: 🧾 Checkout

- uses: streetsidesoftware/cspell-action@v7
- uses: streetsidesoftware/cspell-action@v8
name: 📝 Check Spelling
with:
config: './cspell.json'
Expand Down
4 changes: 2 additions & 2 deletions .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@v5
uses: actions/checkout@v6

- name: '📝 Change Version'
uses: vers-one/dotnet-project-version-updater@v1.7
Expand All @@ -24,7 +24,7 @@ jobs:
version: ${{ github.event.inputs.version }}

- name: '⤴️ Create Pull Request'
uses: peter-evans/create-pull-request@v7
uses: peter-evans/create-pull-request@v8
with:
token: ${{ secrets.GITHUB_TOKEN }}
branch: version/${{ github.event.inputs.version }}
Expand Down
2 changes: 1 addition & 1 deletion .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@v5
uses: actions/checkout@v6
with:
# If using git-lfs (large file storage), this ensures that your files
# are checked out properly.
Expand Down
2 changes: 1 addition & 1 deletion OpenPolytopia/OpenPolytopia.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
</ItemGroup>
<ItemGroup><!-- Production dependencies go here! -->

<PackageReference Include="Chickensoft.GameTools" Version="2.1.14" />
<PackageReference Include="Chickensoft.GameTools" Version="3.1.6" />

<PackageReference Include="SpacetimeDB.ClientSDK" Version="1.5.0" />

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": "9.0.306",
"version": "10.0.101",
"rollForward": "major"
},
"msbuild-sdks": {
Expand Down
Loading