Skip to content

Commit

Permalink
0.0.23.alpha1 prerelease
Browse files Browse the repository at this point in the history
* Add inputs.wait-for-sarif-processing
* Improve talk-to-bot message for step summary
* Provide better messaging for checkout failures
* Drop html dictionaries that are proper subsets
* Upgrade check-spelling/checkout-merge
* Include commands to create a merge when someone creates a PR to a branch with check-spelling and their head branch doesn't have check-spelling.
* Remove confusing warning message
* Automatically detect available CPUs

    GitHub runners now have 4 cpu for open source repositories instead of 2 for Windows/Linux:
    https://github.blog/2024-01-17-github-hosted-runners-double-the-power-for-open-source/

* Try using a better actions/download-artifact
* Detect missing permissions: `actions: read`

    Reference:
    https://github.com/check-spelling/check-spelling/wiki/Workflow-Permissions#contents-read

* Add support for checkout-token

    The expectation is that this be a fine-grained token PAT with just Contents: (Read-only|Read and write) as applicable

* Add support for sarif-token

    The expectation is that this be a fine-grained token PAT with just "Code scanning alerts"

* Warn about compounded words in expect files
* Add support for comments in expect files
* Add `inputs.unrecognized-words-before-collapsing`

    To have check-spelling always collapse the unknown word list, set the value to `0`.

* Migrate to actions/*-artifact@v4
* Explain how case folding is handled
* Rewrite previously acknowledged message
* Add summary for forbidden patterns
* Suggest patterns for files without unknown words
* Tolerate 502 errors from GitHub
* Improve handling for PRs from forks
* Improve links to PR checks from Push event
* Handle suppress_push_for_open_pull_request when there's no on: / pull_request(_target) event handler
* Use ⚠️ icon for warnings
  • Loading branch information
jsoref committed Apr 12, 2024
1 parent d39c771 commit 59318aa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apply.pl
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ sub check_current_script {
return;
}
my $filename = tempfile_name();
my $source = 'https://raw.githubusercontent.com/check-spelling/check-spelling/prerelease/apply.pl';
my $source = 'https://raw.githubusercontent.com/check-spelling/check-spelling/v0.0.23.alpha1/apply.pl';
download_with_curl($source, $filename);
if ($? == 0) {
if (compare_files($filename, $0)) {
Expand Down
2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.0.22
0.0.23-alpha1

0 comments on commit 59318aa

Please sign in to comment.