Skip to content

(chore): Explicitly specify GitHub mode when using GitHub API#17746

Merged
z-Fng merged 1 commit intomasterfrom
fix-checkver
May 3, 2026
Merged

(chore): Explicitly specify GitHub mode when using GitHub API#17746
z-Fng merged 1 commit intomasterfrom
fix-checkver

Conversation

@z-Fng
Copy link
Copy Markdown
Member

@z-Fng z-Fng commented May 3, 2026

Per ScoopInstaller/Scoop#6641, to make authenticated GitHub API requests with a token in checkver, GitHub mode must be explicitly specified. Additionally, checkver.github now allows configuring either a GitHub repo URL or a GitHub API URL.

Some checkver may still not work. However, since there is still another breaking change (ScoopInstaller/Scoop#6653) that hasn't been merged yet, we may wait until it is merged before fixing this issue to avoid duplicating work.

  • Use conventional PR title: <manifest-name[@version]|chore>: <general summary of the pull request>
  • I have read the Contributing Guide

@coderabbitai
Copy link
Copy Markdown

coderabbitai Bot commented May 3, 2026

📝 Walkthrough

Walkthrough

This pull request updates approximately 180+ Scoop package manifest files across the bucket directory. The changes uniformly replace the checkver.url field with a checkver.github field in version-checking configurations, while maintaining the same GitHub API endpoint values. This represents a schema-level refactoring where the method of specifying GitHub release sources is standardized across manifests. No functional logic or endpoint targets are altered.

Estimated code review effort

🎯 2 (Simple) | ⏱️ ~12 minutes

The changes demonstrate high homogeneity—nearly identical field renaming applied consistently across 180+ files with no logic modifications. Once the pattern is verified in a sample of files, the remainder can be efficiently spot-checked. One file (bitwarden.json) contains an anomalous change with unexplained numeric entries that warrants closer inspection, adding minimal additional effort.

Possibly related PRs

🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Title check ✅ Passed The title clearly describes the main change: explicitly specifying GitHub mode when using the GitHub API in checkver configuration across multiple manifest files.
Description check ✅ Passed The description provides context linking to relevant issues and explains the rationale. However, it lacks explicit connection to the raw summary showing ~150 manifest files were updated.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.


Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share
Review rate limit: 7/8 reviews remaining, refill in 7 minutes and 30 seconds.

Comment @coderabbitai help to get the list of available commands and usage tips.

Copy link
Copy Markdown

@coderabbitai coderabbitai Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 3

Caution

Some comments are outside the diff and can’t be posted inline due to platform limitations.

⚠️ Outside diff range comments (4)
bucket/bloop.json (1)

1-23: ⚠️ Potential issue | 🟡 Minor | ⚡ Quick win

Reminder: Scoop manifests should use CRLF line endings.

I can’t verify line endings from the excerpt here—please ensure bucket/bloop.json is CRLF (per the repo’s manifest requirements) to avoid CI/lint issues.

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@bucket/bloop.json` around lines 1 - 23, The manifest currently may have LF
endings; convert the bucket/bloop.json manifest (identify by keys like
"version": "0.6.5" and "pre_install") to use CRLF line endings, update the file
so every line ends with CRLF, save and commit the change, and ensure the
committed file retains CRLF (or add/verify a .gitattributes entry for JSON
manifests if needed) so CI/lint will accept the manifest.
bucket/ghidra.json (1)

1-53: ⚠️ Potential issue | 🟡 Minor | ⚡ Quick win

Ensure Scoop CRLF line endings.

Scoop manifests in bucket/ are required to use CRLF line endings. Please confirm bucket/ghidra.json is CRLF (and not LF from the patch/tooling). If unsure, re-format with:

.\bin\formatjson.ps1 -App ghidra

and/or ensure the file is checked out/committed with CRLF.

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@bucket/ghidra.json` around lines 1 - 53, The ghidra.json manifest currently
has LF line endings; convert it to CRLF, reformat and recommit. Run the provided
formatter (.\bin\formatjson.ps1 -App ghidra) to normalize CRLF, or set Git to
checkout with CRLF (e.g., enable core.autocrlf or re-checkout the file) then
re-save/commit the manifest so bucket/ghidra.json uses CRLF line endings before
pushing.
bucket/ffstudio.json (1)

22-27: ⚠️ Potential issue | 🟠 Major | ⚡ Quick win

Remove hardcoded version from regex/autoupdate to keep updates working.

Line 22 and Line 27 are pinned to 0.2.7, so future releases can fail detection or generate stale URLs during autoupdate.

Suggested fix
-        "regex": "download/v(?<version>[\\d.]+)/FFStudio_0.2.7_x64_en-US-(?<commit>[a-f0-9]+)\\.msi"
+        "regex": "download/v(?<version>[\\d.]+)/FFStudio_[\\d.]+_x64_en-US-(?<commit>[a-f0-9]+)\\.msi"
@@
-                "url": "https://github.com/Draver93/ff-studio/releases/download/v$version/FFStudio_0.2.7_x64_en-US-$matchCommit.msi"
+                "url": "https://github.com/Draver93/ff-studio/releases/download/v$version/FFStudio_$version_x64_en-US-$matchCommit.msi"

Please also align with the manifest docs:

As per coding guidelines: “NEVER allow hardcoded version numbers in the autoupdate block … ensure paths are properly parameterized.”

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@bucket/ffstudio.json` around lines 22 - 27, The regex field currently
hardcodes "0.2.7" and the autoupdate URL in autoupdate.architecture.64bit.url
repeats that hardcoded version; remove the fixed "0.2.7" from the regex and make
the pattern capture the version generically (keep the existing named capture
group "version" and "commit"), then update autoupdate.architecture.64bit.url to
use the captured $version and $matchCommit placeholders instead of the literal
0.2.7 so filenames/URLs are parameterized for future releases (adjust the
"regex" and "autoupdate" entries to match each other).
bucket/folo.json (1)

5-5: ⚠️ Potential issue | 🟠 Major

Correct license identifier and use non-deprecated SPDX form.

The license field is set to "GPL-3.0", which has two issues:

  1. Incorrect identifier: The upstream project (RSSNext/Folo) is licensed under AGPL-3.0 (GNU Affero General Public License v3.0), not GPL-3.0.
  2. Deprecated form: "GPL-3.0" is a deprecated bare SPDX identifier; the suffixed forms (-only or -or-later) must be used instead.

Update to "AGPL-3.0-only" (or "AGPL-3.0-or-later" if applicable based on upstream).

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@bucket/folo.json` at line 5, The license value in folo.json currently uses
the wrong and deprecated SPDX identifier ("GPL-3.0"); update the "license" field
to the correct SPDX identifier for the upstream project by replacing the value
with "AGPL-3.0-only" (or "AGPL-3.0-or-later" if the upstream allows later
versions) so the manifest uses a valid, non-deprecated SPDX form.

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro

Run ID: b218277a-ae17-45f7-bc29-0cb4a6d09f69

📥 Commits

Reviewing files that changed from the base of the PR and between c9127b9 and e42b7d1.

📒 Files selected for processing (131)
  • bucket/86box.json
  • bucket/adventuregamestudio.json
  • bucket/aegisub-arch1t3cht.json
  • bucket/age.json
  • bucket/anki.json
  • bucket/anytype.json
  • bucket/archi.json
  • bucket/bambu-studio.json
  • bucket/biblioteq.json
  • bucket/bitwarden.json
  • bucket/bloop.json
  • bucket/boilr.json
  • bucket/browseros.json
  • bucket/bulk-crap-uninstaller.json
  • bucket/cake-wallet.json
  • bucket/capframex.json
  • bucket/cefflashbrowser.json
  • bucket/chromium.json
  • bucket/clementine.json
  • bucket/clingo.json
  • bucket/compactgui.json
  • bucket/converseen.json
  • bucket/debugtron.json
  • bucket/deeplx.json
  • bucket/dismplusplus.json
  • bucket/dn-famitracker.json
  • bucket/dosbox-x.json
  • bucket/duckdns.json
  • bucket/duplicati.json
  • bucket/effekseer.json
  • bucket/exhyperv.json
  • bucket/fancontrol.json
  • bucket/ffstudio.json
  • bucket/fluidsynth.json
  • bucket/folo.json
  • bucket/fontforge.json
  • bucket/free-shooter.json
  • bucket/freecad.json
  • bucket/freetube.json
  • bucket/fvim.json
  • bucket/garbro.json
  • bucket/ghidra.json
  • bucket/gitextensions.json
  • bucket/github.json
  • bucket/gnucash.json
  • bucket/goldendict.json
  • bucket/gossip.json
  • bucket/hemmelig.json
  • bucket/hoppscotch.json
  • bucket/hydrus-network.json
  • bucket/ilspy.json
  • bucket/inkscape-extension-sozi.json
  • bucket/insomnia.json
  • bucket/insomnium.json
  • bucket/ios-webkit-debug-proxy.json
  • bucket/ipfilter-updater.json
  • bucket/jasper.json
  • bucket/jexiftoolgui.json
  • bucket/kdoc-formatter.json
  • bucket/librecad.json
  • bucket/lightbulb.json
  • bucket/linkerd.json
  • bucket/liteide.json
  • bucket/magicavoxel.json
  • bucket/mediaelch.json
  • bucket/meshroom.json
  • bucket/moosync.json
  • bucket/mpc-hc-fork.json
  • bucket/mpv-git.json
  • bucket/neovim-qt.json
  • bucket/notesnook.json
  • bucket/odict.json
  • bucket/onlyoffice-desktopeditors.json
  • bucket/persepolis.json
  • bucket/playnite.json
  • bucket/powertoys.json
  • bucket/prusaslicer.json
  • bucket/puttie.json
  • bucket/qefi-entry-manager.json
  • bucket/redasm.json
  • bucket/regiontoshare.json
  • bucket/retroshare.json
  • bucket/ripme.json
  • bucket/rssguard.json
  • bucket/saber.json
  • bucket/scoop-completion.json
  • bucket/scoop-sd.json
  • bucket/sdl2-image.json
  • bucket/sdl2-mixer.json
  • bucket/sdl2-ttf.json
  • bucket/sdl2.json
  • bucket/shaderglass.json
  • bucket/simplewall.json
  • bucket/skylark.json
  • bucket/so.json
  • bucket/soundswitch.json
  • bucket/sozi.json
  • bucket/spicetify-themes.json
  • bucket/spotify-qt.json
  • bucket/stack-wallet.json
  • bucket/standardnotes.json
  • bucket/status.json
  • bucket/streamlabs-obs.json
  • bucket/streamlink.json
  • bucket/subsync.json
  • bucket/supermium.json
  • bucket/suwayomi-server.json
  • bucket/switchhosts.json
  • bucket/tcno-acc-switcher.json
  • bucket/tern-subtitle-file-translator.json
  • bucket/thonny.json
  • bucket/thorium.json
  • bucket/tlaplus-toolbox.json
  • bucket/todolist.json
  • bucket/total-registry.json
  • bucket/ubports-installer.json
  • bucket/uefitool.json
  • bucket/uniextract2.json
  • bucket/universal-android-debloater.json
  • bucket/vcxsrv.json
  • bucket/virgo.json
  • bucket/wasabi-wallet.json
  • bucket/windterm.json
  • bucket/wox.json
  • bucket/yacreader.json
  • bucket/yesplaymusic.json
  • bucket/yoke.json
  • bucket/youtube-dl-gui.json
  • bucket/zeronet.json
  • deprecated/fmedia.json
  • deprecated/nekoray.json

Comment thread bucket/duckdns.json
Comment thread bucket/fluidsynth.json
Comment thread bucket/scoop-sd.json
@github-actions
Copy link
Copy Markdown
Contributor

github-actions Bot commented May 3, 2026

Your changes did not pass all checks.

Please address the issues in the manifest and comment starting with /verify to rerun the checks.

86box

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

adventuregamestudio

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate
  • Autoupdate Hash Extraction

aegisub-arch1t3cht

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

age

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

anki

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate
  • Autoupdate Hash Extraction

anytype

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

archi

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate
  • Autoupdate Hash Extraction

bambu-studio

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

biblioteq

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

bitwarden

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

bloop

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

boilr

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

browseros

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

bulk-crap-uninstaller

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate
  • Autoupdate Hash Extraction

cake-wallet

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate
  • Autoupdate Hash Extraction

capframex

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

cefflashbrowser

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

chromium

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate
  • Autoupdate Hash Extraction

clementine

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

clingo

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

compactgui

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

converseen

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

debugtron

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

deeplx

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

dismplusplus

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

dn-famitracker

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

dosbox-x

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

duckdns

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

duplicati

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

effekseer

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

exhyperv

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

fancontrol

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

ffstudio

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

fluidsynth

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

folo

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate
  • Autoupdate Hash Extraction

fontforge

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

free-shooter

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate
  • Autoupdate Hash Extraction

freecad

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate
  • Autoupdate Hash Extraction

freetube

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

fvim

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

garbro

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

ghidra

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate
  • Autoupdate Hash Extraction

gitextensions

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

github

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate
  • Autoupdate Hash Extraction

gnucash

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate
  • Autoupdate Hash Extraction

goldendict

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

gossip

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate
  • Autoupdate Hash Extraction

hemmelig

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate
  • Autoupdate Hash Extraction

hoppscotch

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

hydrus-network

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

ilspy

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

inkscape-extension-sozi

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

insomnia

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate
  • Autoupdate Hash Extraction

insomnium

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate
  • Autoupdate Hash Extraction

ios-webkit-debug-proxy

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

ipfilter-updater

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

jasper

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

jexiftoolgui

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

kdoc-formatter

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

librecad

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

lightbulb

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

linkerd

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate
  • Autoupdate Hash Extraction

liteide

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

magicavoxel

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

mediaelch

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

meshroom

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate
  • Autoupdate Hash Extraction

moosync

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

mpc-hc-fork

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

mpv-git

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

neovim-qt

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

notesnook

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate
  • Autoupdate Hash Extraction

odict

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate
  • Autoupdate Hash Extraction

onlyoffice-desktopeditors

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

persepolis

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

playnite

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

powertoys

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate
  • Autoupdate Hash Extraction

prusaslicer

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

puttie

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

qefi-entry-manager

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

redasm

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

regiontoshare

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

retroshare

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate
  • Autoupdate Hash Extraction

ripme

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

rssguard

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

saber

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

scoop-completion

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

scoop-sd

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

sdl2-image

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

sdl2-mixer

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

sdl2-ttf

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

sdl2

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

shaderglass

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

simplewall

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate
  • Autoupdate Hash Extraction

skylark

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

so

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

soundswitch

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

sozi

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

spicetify-themes

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

spotify-qt

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

stack-wallet

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate
  • Autoupdate Hash Extraction

standardnotes

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate
  • Autoupdate Hash Extraction

status

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

streamlabs-obs

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

streamlink

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

subsync

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

supermium

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

suwayomi-server

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate
  • Autoupdate Hash Extraction

switchhosts

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

tcno-acc-switcher

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

tern-subtitle-file-translator

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

thonny

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

thorium

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

tlaplus-toolbox

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate
  • Autoupdate Hash Extraction

todolist

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

total-registry

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

ubports-installer

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate
  • Autoupdate Hash Extraction

uefitool

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

uniextract2

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

universal-android-debloater

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

vcxsrv

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

virgo

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

wasabi-wallet

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate
  • Autoupdate Hash Extraction

windterm

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

wox

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

yacreader

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

yesplaymusic

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate
  • Autoupdate Hash Extraction

yoke

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

youtube-dl-gui

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate
  • Autoupdate Hash Extraction

zeronet

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate

Check the full log for details.

@z-Fng z-Fng merged commit b85a9ba into master May 3, 2026
5 of 6 checks passed
@z-Fng z-Fng deleted the fix-checkver branch May 3, 2026 11:42
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant