Skip to content

Commit

Permalink
deps: update csutils (csdiff and csgrep) to 3.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
jamacku committed Sep 29, 2023
1 parent dc2f863 commit a58af3b
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ FROM fedora@sha256:6fc00f83a1b6526b1c6562e30f552d109ba8e269259c6742a26efab1b7aef
ARG fedora="38"
ARG arch="x86_64"

ARG version_csdiff="3.0.3-1"
ARG version_csdiff="3.0.4-1"
ARG version_shellcheck="0.9.0-2"

ARG rpm_csdiff="csdiff-${version_csdiff}.fc${fedora}.${arch}.rpm"
Expand Down
2 changes: 1 addition & 1 deletion docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
* Fix count of scanned files in job Summary when running on push event.
* Drop support for `shell-scripts` input
* Drop support for `ignored-codes` input
* Update `csutils` (`csdiff`) to 3.0.3
* Update `csutils` (`csdiff`) to 3.0.4

## v4.2.2

Expand Down
2 changes: 1 addition & 1 deletion test/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ FROM fedora@sha256:6fc00f83a1b6526b1c6562e30f552d109ba8e269259c6742a26efab1b7aef
ARG fedora="38"
ARG arch="x86_64"

ARG version_csdiff="3.0.3-1"
ARG version_csdiff="3.0.4-1"
ARG version_shellcheck="0.9.0-2"

ARG rpm_csdiff="csdiff-${version_csdiff}.fc${fedora}.${arch}.rpm"
Expand Down
2 changes: 2 additions & 0 deletions test/fixtures/get_defects/defects.log
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
{
"file_name": "innocent-script.sh",
"line": 7,
"column": 1,
"event": "warning[SC2034]",
"message": "UNUSED_VAR2 appears unused. Verify use (or export if used externally).",
"verbosity_level": 0
Expand All @@ -24,6 +25,7 @@
{
"file_name": "innocent-script.sh",
"line": 11,
"column": 8,
"event": "warning[SC2115]",
"message": "Use \"${var:?}\" to ensure this never expands to / .",
"verbosity_level": 0
Expand Down
1 change: 1 addition & 0 deletions test/fixtures/get_fixes/fixes.log
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
{
"file_name": "innocent-script.sh",
"line": 6,
"column": 1,
"event": "warning[SC2034]",
"message": "UNUSED_VAR appears unused. Verify use (or export if used externally).",
"verbosity_level": 0
Expand Down
2 changes: 1 addition & 1 deletion test/show_versions.bats
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@ setup () {
assert_success
assert_output \
"ShellCheck: 0.9.0
csutils: 3.0.3"
csutils: 3.0.4"
}

0 comments on commit a58af3b

Please sign in to comment.