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

build(deps): bump redhat-plumbers-in-action/differential-shellcheck from 5.0.2 to 5.1.0 #92

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 1, 2024

Bumps redhat-plumbers-in-action/differential-shellcheck from 5.0.2 to 5.1.0.

Release notes

Sourced from redhat-plumbers-in-action/differential-shellcheck's releases.

v5.1.0

What's Changed

New

  • Improve shell script detection based on emacs file mode header 🐯 (#357) @​jamacku

Documentation

Other changes

Automation and CI changes

Dependency Updates

Full Changelog: redhat-plumbers-in-action/differential-shellcheck@v5.0.2...v5.1.0

Commits
  • b9df2a9 v5.1.0
  • c74f4ed feat: add support for emacs file mode line with mode:
  • f23778e feat: support -*- shell script -*- script header
  • 65342fa deps: update csutils to 3.2.0
  • 5580924 build(deps): bump test/bats from 3d3f63d to 990d8e2
  • 66806ae build(deps): bump actions/upload-artifact from 4.0.0 to 4.3.0
  • c2a8e3e build(deps): bump dorny/paths-filter from 2.11.1 to 3.0.0
  • a219af7 build(deps): bump github/codeql-action from 3.22.12 to 3.23.2
  • 97d3bdd README.md: bump actions/upload-artifact from v3 to v4 (#347)
  • ae3a070 doc: remove extra spaces from example
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Mar 1, 2024
@dependabot dependabot bot requested a review from lzaoral March 1, 2024 11:46
@lzaoral
Copy link
Collaborator

lzaoral commented Mar 1, 2024

@kdudka It looks like we have got some incompatibility with GCC 14 :/

kdudka added a commit that referenced this pull request Mar 1, 2024
kdudka added a commit that referenced this pull request Mar 1, 2024
kdudka added a commit that referenced this pull request Mar 1, 2024
@kdudka
Copy link
Owner

kdudka commented Mar 1, 2024

@lzaoral Thanks for checking! I have proposed a fix in #93.

kdudka added a commit that referenced this pull request Mar 1, 2024
This commit fixes the following errors:
```
In file included from cl/tests/data/vk-0100.c:1:
cl/../include/predator-builtins/verifier-builtins.h: In function '__VERIFIER_error':
cl/../include/predator-builtins/verifier-builtins.h:119:5: error: implicit declaration of function 'abort' [-Wimplicit-function-declaration]
  119 |     abort();
      |     ^~~~~
cl/../include/predator-builtins/verifier-builtins.h:1:1: note: include '<stdlib.h>' or provide a declaration of 'abort'
  +++ |+#include <stdlib.h>
    1 | /*
cl/../include/predator-builtins/verifier-builtins.h:119:5: warning: incompatible implicit declaration of built-in function 'abort' [-Wbuiltin-declaration-mismatch]
  119 |     abort();
      |     ^~~~~
cl/../include/predator-builtins/verifier-builtins.h:119:5: note: include '<stdlib.h>' or provide a declaration of 'abort'
cl_build/tests/libchk_var_killer.so: warning: some errors already detected, additional passes will be skipped

In file included from cl/tests/data/vk-0101.c:1:
cl/../include/predator-builtins/verifier-builtins.h: In function '__VERIFIER_error':
cl/../include/predator-builtins/verifier-builtins.h:119:5: error: implicit declaration of function 'abort' [-Wimplicit-function-declaration]
  119 |     abort();
      |     ^~~~~
cl/../include/predator-builtins/verifier-builtins.h:1:1: note: include '<stdlib.h>' or provide a declaration of 'abort'
  +++ |+#include <stdlib.h>
    1 | /*
cl/../include/predator-builtins/verifier-builtins.h:119:5: warning: incompatible implicit declaration of built-in function 'abort' [-Wbuiltin-declaration-mismatch]
  119 |     abort();
      |     ^~~~~
cl/../include/predator-builtins/verifier-builtins.h:119:5: note: include '<stdlib.h>' or provide a declaration of 'abort'
cl_build/tests/libchk_var_killer.so: warning: some errors already detected, additional passes will be skipped

cl/tests/data/pt-0850.c: In function 'main':
cl/tests/data/pt-0850.c:16:10: error: assignment to 'int *' from incompatible pointer type 'int **' [-Wincompatible-pointer-types]
   16 |     ptrB = &ptrC;
      |          ^
cl_build/tests/libchk_pt.so: warning: some errors already detected, additional passes will be skipped

cl/tests/data/pt-0950.c: In function 'test':
cl/tests/data/pt-0950.c:13:8: error: assignment to 'int' from 'int *' makes integer from pointer without a cast [-Wint-conversion]
   13 |     *p = &i;
      |        ^
cl/tests/data/pt-0950.c: In function 'main':
cl/tests/data/pt-0950.c:21:7: error: assignment to 'int' from 'int *' makes integer from pointer without a cast [-Wint-conversion]
   21 |     i = &j;
      |       ^
cl_build/tests/libchk_pt.so: warning: some errors already detected, additional passes will be skipped

In file included from cl/tests/data/pt-1203.c:3:
cl/../include/predator-builtins/verifier-builtins.h: In function '__VERIFIER_error':
cl/../include/predator-builtins/verifier-builtins.h:119:5: error: implicit declaration of function 'abort' [-Wimplicit-function-declaration]
  119 |     abort();
      |     ^~~~~
cl/../include/predator-builtins/verifier-builtins.h:1:1: note: include '<stdlib.h>' or provide a declaration of 'abort'
  +++ |+#include <stdlib.h>
    1 | /*
cl/../include/predator-builtins/verifier-builtins.h:119:5: warning: incompatible implicit declaration of built-in function 'abort' [-Wbuiltin-declaration-mismatch]
  119 |     abort();
      |     ^~~~~
cl/../include/predator-builtins/verifier-builtins.h:119:5: note: include '<stdlib.h>' or provide a declaration of 'abort'
cl_build/tests/libchk_pt.so: warning: some errors already detected, additional passes will be skipped

In file included from cl/tests/data/pt-1300.c:2:
cl/../include/predator-builtins/verifier-builtins.h: In function '__VERIFIER_error':
cl/../include/predator-builtins/verifier-builtins.h:119:5: error: implicit declaration of function 'abort' [-Wimplicit-function-declaration]
  119 |     abort();
      |     ^~~~~
cl/../include/predator-builtins/verifier-builtins.h:1:1: note: include '<stdlib.h>' or provide a declaration of 'abort'
  +++ |+#include <stdlib.h>
    1 | /*
cl/../include/predator-builtins/verifier-builtins.h:119:5: warning: incompatible implicit declaration of built-in function 'abort' [-Wbuiltin-declaration-mismatch]
  119 |     abort();
      |     ^~~~~
cl/../include/predator-builtins/verifier-builtins.h:119:5: note: include '<stdlib.h>' or provide a declaration of 'abort'
cl_build/tests/libchk_pt.so: warning: some errors already detected, additional passes will be skipped

cl/tests/data/pt-0850.c: In function 'main':
cl/tests/data/pt-0850.c:16:10: error: assignment to 'int *' from incompatible pointer type 'int **' [-Wincompatible-pointer-types]
   16 |     ptrB = &ptrC;
      |          ^
cl_build/tests/libchk_pt.so: warning: some errors already detected, additional passes will be skipped

cl/tests/data/pt-0950.c: In function 'test':
cl/tests/data/pt-0950.c:13:8: error: assignment to 'int' from 'int *' makes integer from pointer without a cast [-Wint-conversion]
   13 |     *p = &i;
      |        ^
cl/tests/data/pt-0950.c: In function 'main':
cl/tests/data/pt-0950.c:21:7: error: assignment to 'int' from 'int *' makes integer from pointer without a cast [-Wint-conversion]
   21 |     i = &j;
      |       ^
cl_build/tests/libchk_pt.so: warning: some errors already detected, additional passes will be skipped
```

Related: #92
Related: #93
kdudka added a commit that referenced this pull request Mar 1, 2024
This commit fixes the following errors:
```
../tests/predator-regre/test-0170.c: In function 'DLInsertFirst':
../tests/predator-regre/test-0170.c:43:9: error: implicit declaration of function 'DLError' [-Wimplicit-function-declaration]
   43 |         DLError();
      |         ^~~~~~~

../tests/predator-regre/test-0183.c: In function 'main':
../tests/predator-regre/test-0183.c:114:5: error: implicit declaration of function '__VERIFIER_plot' [-Wimplicit-function-declaration]
  114 |     __VERIFIER_plot(NULL, &list, &p1, &p2);
      |     ^~~~~~~~~~~~~~~
[...]
```

Related: #92
Related: #93
kdudka added a commit that referenced this pull request Mar 1, 2024
This commit fixes the following build-time error:
```
cl/gcc/clplug.c: In function 'bool error_detected()':
cl/gcc/clplug.c:480:52: error: invalid types '<unresolved overloaded function type>[diagnostic_t]' for array subscript
  480 |     return global_dc && global_dc->diagnostic_count[DK_ERROR];
      |                                                    ^
```

Related: #92
Resolves: #93
kdudka added a commit that referenced this pull request Mar 1, 2024
This commit fixes the following errors:
```
In file included from cl/tests/data/vk-0100.c:1:
cl/../include/predator-builtins/verifier-builtins.h: In function '__VERIFIER_error':
cl/../include/predator-builtins/verifier-builtins.h:119:5: error: implicit declaration of function 'abort' [-Wimplicit-function-declaration]
  119 |     abort();
      |     ^~~~~
cl/../include/predator-builtins/verifier-builtins.h:1:1: note: include '<stdlib.h>' or provide a declaration of 'abort'
  +++ |+#include <stdlib.h>
    1 | /*
cl/../include/predator-builtins/verifier-builtins.h:119:5: warning: incompatible implicit declaration of built-in function 'abort' [-Wbuiltin-declaration-mismatch]
  119 |     abort();
      |     ^~~~~
cl/../include/predator-builtins/verifier-builtins.h:119:5: note: include '<stdlib.h>' or provide a declaration of 'abort'
cl_build/tests/libchk_var_killer.so: warning: some errors already detected, additional passes will be skipped

In file included from cl/tests/data/vk-0101.c:1:
cl/../include/predator-builtins/verifier-builtins.h: In function '__VERIFIER_error':
cl/../include/predator-builtins/verifier-builtins.h:119:5: error: implicit declaration of function 'abort' [-Wimplicit-function-declaration]
  119 |     abort();
      |     ^~~~~
cl/../include/predator-builtins/verifier-builtins.h:1:1: note: include '<stdlib.h>' or provide a declaration of 'abort'
  +++ |+#include <stdlib.h>
    1 | /*
cl/../include/predator-builtins/verifier-builtins.h:119:5: warning: incompatible implicit declaration of built-in function 'abort' [-Wbuiltin-declaration-mismatch]
  119 |     abort();
      |     ^~~~~
cl/../include/predator-builtins/verifier-builtins.h:119:5: note: include '<stdlib.h>' or provide a declaration of 'abort'
cl_build/tests/libchk_var_killer.so: warning: some errors already detected, additional passes will be skipped

cl/tests/data/pt-0850.c: In function 'main':
cl/tests/data/pt-0850.c:16:10: error: assignment to 'int *' from incompatible pointer type 'int **' [-Wincompatible-pointer-types]
   16 |     ptrB = &ptrC;
      |          ^
cl_build/tests/libchk_pt.so: warning: some errors already detected, additional passes will be skipped

cl/tests/data/pt-0950.c: In function 'test':
cl/tests/data/pt-0950.c:13:8: error: assignment to 'int' from 'int *' makes integer from pointer without a cast [-Wint-conversion]
   13 |     *p = &i;
      |        ^
cl/tests/data/pt-0950.c: In function 'main':
cl/tests/data/pt-0950.c:21:7: error: assignment to 'int' from 'int *' makes integer from pointer without a cast [-Wint-conversion]
   21 |     i = &j;
      |       ^
cl_build/tests/libchk_pt.so: warning: some errors already detected, additional passes will be skipped

In file included from cl/tests/data/pt-1203.c:3:
cl/../include/predator-builtins/verifier-builtins.h: In function '__VERIFIER_error':
cl/../include/predator-builtins/verifier-builtins.h:119:5: error: implicit declaration of function 'abort' [-Wimplicit-function-declaration]
  119 |     abort();
      |     ^~~~~
cl/../include/predator-builtins/verifier-builtins.h:1:1: note: include '<stdlib.h>' or provide a declaration of 'abort'
  +++ |+#include <stdlib.h>
    1 | /*
cl/../include/predator-builtins/verifier-builtins.h:119:5: warning: incompatible implicit declaration of built-in function 'abort' [-Wbuiltin-declaration-mismatch]
  119 |     abort();
      |     ^~~~~
cl/../include/predator-builtins/verifier-builtins.h:119:5: note: include '<stdlib.h>' or provide a declaration of 'abort'
cl_build/tests/libchk_pt.so: warning: some errors already detected, additional passes will be skipped

In file included from cl/tests/data/pt-1300.c:2:
cl/../include/predator-builtins/verifier-builtins.h: In function '__VERIFIER_error':
cl/../include/predator-builtins/verifier-builtins.h:119:5: error: implicit declaration of function 'abort' [-Wimplicit-function-declaration]
  119 |     abort();
      |     ^~~~~
cl/../include/predator-builtins/verifier-builtins.h:1:1: note: include '<stdlib.h>' or provide a declaration of 'abort'
  +++ |+#include <stdlib.h>
    1 | /*
cl/../include/predator-builtins/verifier-builtins.h:119:5: warning: incompatible implicit declaration of built-in function 'abort' [-Wbuiltin-declaration-mismatch]
  119 |     abort();
      |     ^~~~~
cl/../include/predator-builtins/verifier-builtins.h:119:5: note: include '<stdlib.h>' or provide a declaration of 'abort'
cl_build/tests/libchk_pt.so: warning: some errors already detected, additional passes will be skipped

cl/tests/data/pt-0850.c: In function 'main':
cl/tests/data/pt-0850.c:16:10: error: assignment to 'int *' from incompatible pointer type 'int **' [-Wincompatible-pointer-types]
   16 |     ptrB = &ptrC;
      |          ^
cl_build/tests/libchk_pt.so: warning: some errors already detected, additional passes will be skipped

cl/tests/data/pt-0950.c: In function 'test':
cl/tests/data/pt-0950.c:13:8: error: assignment to 'int' from 'int *' makes integer from pointer without a cast [-Wint-conversion]
   13 |     *p = &i;
      |        ^
cl/tests/data/pt-0950.c: In function 'main':
cl/tests/data/pt-0950.c:21:7: error: assignment to 'int' from 'int *' makes integer from pointer without a cast [-Wint-conversion]
   21 |     i = &j;
      |       ^
cl_build/tests/libchk_pt.so: warning: some errors already detected, additional passes will be skipped
```

Related: #92
Related: #93
kdudka added a commit that referenced this pull request Mar 1, 2024
This commit fixes the following errors:
```
../tests/predator-regre/test-0170.c: In function 'DLInsertFirst':
../tests/predator-regre/test-0170.c:43:9: error: implicit declaration of function 'DLError' [-Wimplicit-function-declaration]
   43 |         DLError();
      |         ^~~~~~~

../tests/predator-regre/test-0183.c: In function 'main':
../tests/predator-regre/test-0183.c:114:5: error: implicit declaration of function '__VERIFIER_plot' [-Wimplicit-function-declaration]
  114 |     __VERIFIER_plot(NULL, &list, &p1, &p2);
      |     ^~~~~~~~~~~~~~~
[...]
```

Related: #92
Related: #93
kdudka added a commit that referenced this pull request Mar 1, 2024
This commit fixes the following build-time error:
```
cl/gcc/clplug.c: In function 'bool error_detected()':
cl/gcc/clplug.c:480:52: error: invalid types '<unresolved overloaded function type>[diagnostic_t]' for array subscript
  480 |     return global_dc && global_dc->diagnostic_count[DK_ERROR];
      |                                                    ^
```

Related: #92
Resolves: #93
Bumps [redhat-plumbers-in-action/differential-shellcheck](https://github.com/redhat-plumbers-in-action/differential-shellcheck) from 5.0.2 to 5.1.0.
- [Release notes](https://github.com/redhat-plumbers-in-action/differential-shellcheck/releases)
- [Changelog](https://github.com/redhat-plumbers-in-action/differential-shellcheck/blob/main/docs/CHANGELOG.md)
- [Commits](redhat-plumbers-in-action/differential-shellcheck@91e2582...b9df2a9)

---
updated-dependencies:
- dependency-name: redhat-plumbers-in-action/differential-shellcheck
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@kdudka kdudka force-pushed the dependabot/github_actions/redhat-plumbers-in-action/differential-shellcheck-5.1.0 branch from d900295 to f496132 Compare March 1, 2024 15:54
@lzaoral
Copy link
Collaborator

lzaoral commented Mar 1, 2024

@kdudka There is no need to rebase Dependabot manually. Just use this:

@dependabot rebase

Copy link
Contributor Author

dependabot bot commented on behalf of github Mar 1, 2024

Looks like this PR has been edited by someone other than Dependabot. That means Dependabot can't rebase it - sorry!

If you're happy for Dependabot to recreate it from scratch, overwriting any edits, you can request @dependabot recreate.

@kdudka
Copy link
Owner

kdudka commented Mar 1, 2024

@lzaoral Thank you for letting me know! Writing a comment is obviously easier. Anyway, this should be ready to merge.

@lzaoral lzaoral merged commit 08f5459 into master Mar 1, 2024
22 checks passed
@dependabot dependabot bot deleted the dependabot/github_actions/redhat-plumbers-in-action/differential-shellcheck-5.1.0 branch March 1, 2024 16:35
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants