Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump dawidd6/action-download-artifact from 3 to 8 #368

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/comment-on-pr.yml
Original file line number Diff line number Diff line change
@@ -17,7 +17,7 @@ jobs:

steps:
- name: Get the PR Number artifact
uses: dawidd6/action-download-artifact@v3
uses: dawidd6/action-download-artifact@v8
with:
workflow: ${{ github.event.workflow_run.workflow_id }}
workflow_conclusion: ""
@@ -27,7 +27,7 @@ jobs:
- name: Confirm the PR Number (Debugging)
run: echo $PR_NUMBER
- name: Get the code coverage results file
uses: dawidd6/action-download-artifact@v3
uses: dawidd6/action-download-artifact@v8
with:
workflow: ${{ github.event.workflow_run.workflow_id }}
workflow_conclusion: ""

Unchanged files with check annotations Beta

string? message = null,
Func<Exception>? exceptionCreator = null)
{
if (EqualityComparer<T>.Default.Equals(input, default(T)!) || input is null)

Check warning on line 217 in src/GuardClauses/GuardAgainstNullExtensions.cs

GitHub Actions / build

Possible null reference argument for parameter 'x' in 'bool EqualityComparer<T>.Equals(T x, T y)'.

Check warning on line 217 in src/GuardClauses/GuardAgainstNullExtensions.cs

GitHub Actions / build

Possible null reference argument for parameter 'x' in 'bool EqualityComparer<T>.Equals(T x, T y)'.
{
throw exceptionCreator?.Invoke() ??
new ArgumentException(message ?? $"Parameter [{parameterName}] is default value for type {typeof(T).Name}", parameterName);