diff --git a/.github/workflows/stable-merge.yml b/.github/workflows/stable-merge.yml
index f467dac933..7bd9cf84fd 100644
--- a/.github/workflows/stable-merge.yml
+++ b/.github/workflows/stable-merge.yml
@@ -37,6 +37,7 @@ jobs:
allow_forks: true
user_name: tgstation-server-ci[bot]
user_email: 161980869+tgstation-server-ci[bot]@users.noreply.github.com
- push_token: ${{ steps.app-token-generation.outputs.token }}
+ push_token: INSTALLATION_TOKEN
env:
GITHUB_TOKEN: ${{ steps.app-token-generation.outputs.token }}
+ INSTALLATION_TOKEN: ${{ steps.app-token-generation.outputs.token }}
diff --git a/build/Version.props b/build/Version.props
index f524e2ee69..fe1a952886 100644
--- a/build/Version.props
+++ b/build/Version.props
@@ -3,7 +3,7 @@
- 6.9.0
+ 6.9.1
5.2.0
10.7.0
7.0.0
diff --git a/src/Tgstation.Server.Host/System/Process.cs b/src/Tgstation.Server.Host/System/Process.cs
index 13a1a278f5..e180cfc3cc 100644
--- a/src/Tgstation.Server.Host/System/Process.cs
+++ b/src/Tgstation.Server.Host/System/Process.cs
@@ -29,7 +29,7 @@ namespace Tgstation.Server.Host.System
{
try
{
- return handle.VirtualMemorySize64;
+ return handle.PrivateMemorySize64;
}
catch (Exception ex)
{