GHA CI: Bump numerous hook revs

PR #22193.
This commit is contained in:
xavier2k6 2025-01-25 19:26:27 +00:00 committed by GitHub
parent 82c36aea89
commit abd3cd54bc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View file

@ -69,7 +69,7 @@ repos:
- ts - ts
- repo: https://github.com/codespell-project/codespell.git - repo: https://github.com/codespell-project/codespell.git
rev: v2.3.0 rev: v2.4.0
hooks: hooks:
- id: codespell - id: codespell
name: Check spelling (codespell) name: Check spelling (codespell)
@ -88,7 +88,7 @@ repos:
- ts - ts
- repo: https://github.com/crate-ci/typos.git - repo: https://github.com/crate-ci/typos.git
rev: v1.28.4 rev: v1.29.4
hooks: hooks:
- id: typos - id: typos
name: Check spelling (typos) name: Check spelling (typos)

View file

@ -579,7 +579,7 @@ void Application::runExternalProgram(const QString &programTemplate, const BitTo
const QString logMsg = tr("Running external program. Torrent: \"%1\". Command: `%2`"); const QString logMsg = tr("Running external program. Torrent: \"%1\". Command: `%2`");
const QString logMsgError = tr("Failed to run external program. Torrent: \"%1\". Command: `%2`"); const QString logMsgError = tr("Failed to run external program. Torrent: \"%1\". Command: `%2`");
// The processing sequenece is different for Windows and other OS, this is intentional // The processing sequence is different for Windows and other OS, this is intentional
#if defined(Q_OS_WIN) #if defined(Q_OS_WIN)
const QString program = replaceVariables(programTemplate); const QString program = replaceVariables(programTemplate);
const std::wstring programWStr = program.toStdWString(); const std::wstring programWStr = program.toStdWString();