Skip to content

Commit

Permalink
chore(ci): bump ludeeus/action-shellcheck from 0.1.0 to 1.1.0 (#31)
Browse files Browse the repository at this point in the history
* chore(ci): bump ludeeus/action-shellcheck from 0.1.0 to 1.1.0

Bumps [ludeeus/action-shellcheck](https://github.com/ludeeus/action-shellcheck) from 0.1.0 to 1.1.0.
- [Release notes](https://github.com/ludeeus/action-shellcheck/releases)
- [Commits](ludeeus/action-shellcheck@0.1.0...1.1.0)

---
updated-dependencies:
- dependency-name: ludeeus/action-shellcheck
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

* fix(shellcheck): exclude find rule and add quoting on GENERATIONS

Signed-off-by: Toni Tauro <[email protected]>

* fix(shellcheck): ignore only on line

Signed-off-by: Toni Tauro <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Toni Tauro <[email protected]>
  • Loading branch information
dependabot[bot] and eyenx authored Feb 14, 2022
1 parent 2a313e5 commit 6d0f0d2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/shellcheck.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ jobs:
uses: actions/checkout@v2
- name: Run shellcheck
id: shellcheck
uses: ludeeus/action-shellcheck@0.1.0
uses: ludeeus/action-shellcheck@1.1.0
3 changes: 2 additions & 1 deletion src/back8sup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -151,4 +151,5 @@ done
log "INFO done exporting namespace $NS"

log "INFO keep last $GENERATIONS backups and delete the rest"
ls -t -w 1 "$DST_FOLDER/" | tail -n +$GENERATIONS | xargs rm -rf
# shellcheck disable=SC2012
ls -t -w 1 "$DST_FOLDER/" | tail -n +"$GENERATIONS" | xargs rm -rf

0 comments on commit 6d0f0d2

Please sign in to comment.