From 01c7a600c3542eb41bd2a83081200633e28f2a5b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?DOTTEL=20Ga=C3=ABl?= Date: Mon, 2 Feb 2026 00:43:25 +0100 Subject: [PATCH 1/4] Remove status update steps from JSON check workflow Removed status update steps for success and failure. --- .github/workflows/jsoncheck.yml | 24 ------------------------ 1 file changed, 24 deletions(-) diff --git a/.github/workflows/jsoncheck.yml b/.github/workflows/jsoncheck.yml index b3873b65..32e49f12 100644 --- a/.github/workflows/jsoncheck.yml +++ b/.github/workflows/jsoncheck.yml @@ -18,27 +18,3 @@ jobs: uses: limitusus/json-syntax-check@v1 with: pattern: "\\.json$" - - - name: Update success status - if: success() - run : | - gh api \ - --method POST \ - -H "Accept: application/vnd.github+json" \ - /repos/${{ github.repository }}/statuses/${{ github.sha }} \ - -f state='success' \ - -f context='json' \ - env: - GH_TOKEN: ${{ github.token }} - - - name: Update failed status - if: failure() - run : | - gh api \ - --method POST \ - -H "Accept: application/vnd.github+json" \ - /repos/${{ github.repository }}/statuses/${{ github.sha }} \ - -f state='failure' \ - -f context='json' \ - env: - GH_TOKEN: ${{ github.token }} From 3d40bb297b5606814f6215049d7e881dd6bbb565 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?DOTTEL=20Ga=C3=ABl?= Date: Mon, 2 Feb 2026 00:44:29 +0100 Subject: [PATCH 2/4] Break json on purpose --- LatestVersion.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LatestVersion.json b/LatestVersion.json index 986854e5..14f0e7b4 100644 --- a/LatestVersion.json +++ b/LatestVersion.json @@ -10,7 +10,7 @@ "VersionMinor": 59, "VersionPatch": 5, "Changes": "Version 0.59.5:

- The Restaurant Farmer can now automatically select moves based on type effectiveness.
- Hopefully fixed more Restaurant Farmer hangs. (reported by numerous people)
- Bench Sit should be less CPU resource intensive. (reported by dlewis3040)

Version 0.59.4:

- The Restaurant Farmer now has a button to stop after the current run.
- More fixes to the Restaurant Farmer. (reported by elitheguy, frostedgeulleisia, and mendedpearl)" - }, + } "PrivateBeta": { "VersionMajor": 0, "VersionMinor": 61, From b834213328cc927910ae74cc8857ffbe30dbb152 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?DOTTEL=20Ga=C3=ABl?= Date: Mon, 2 Feb 2026 00:45:55 +0100 Subject: [PATCH 3/4] Update LatestVersion.json with new version details --- LatestVersion.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LatestVersion.json b/LatestVersion.json index 14f0e7b4..986854e5 100644 --- a/LatestVersion.json +++ b/LatestVersion.json @@ -10,7 +10,7 @@ "VersionMinor": 59, "VersionPatch": 5, "Changes": "Version 0.59.5:

- The Restaurant Farmer can now automatically select moves based on type effectiveness.
- Hopefully fixed more Restaurant Farmer hangs. (reported by numerous people)
- Bench Sit should be less CPU resource intensive. (reported by dlewis3040)

Version 0.59.4:

- The Restaurant Farmer now has a button to stop after the current run.
- More fixes to the Restaurant Farmer. (reported by elitheguy, frostedgeulleisia, and mendedpearl)" - } + }, "PrivateBeta": { "VersionMajor": 0, "VersionMinor": 61, From d0f5c95d93d0ac2a595b7635e0b4d57dfe799361 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?DOTTEL=20Ga=C3=ABl?= Date: Mon, 2 Feb 2026 00:47:14 +0100 Subject: [PATCH 4/4] Update GitHub Actions to use latest versions --- .github/workflows/jsoncheck.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/jsoncheck.yml b/.github/workflows/jsoncheck.yml index 32e49f12..7bfab8ad 100644 --- a/.github/workflows/jsoncheck.yml +++ b/.github/workflows/jsoncheck.yml @@ -12,9 +12,9 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v6 - name: Check JSON syntax - uses: limitusus/json-syntax-check@v1 + uses: limitusus/json-syntax-check@v2 with: pattern: "\\.json$"