Skip to content

Commit

Permalink
chore: bump project dependencies (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
shini4i authored Jun 13, 2024
1 parent 188cef0 commit 506889c
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 10 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,14 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Create k8s Kind Cluster
uses: helm/[email protected]

uses: helm/[email protected]
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: true

- name: Setup BATS
uses: mig4/setup-bats@v1
with:
bats-version: 1.9.0

bats-version: 1.11.0
- name: Run BATS Tests
run: make ci-test
2 changes: 1 addition & 1 deletion test/bats
Submodule bats updated 81 files
+3 −0 .codespellrc
+47 −0 .github/dependabot.yml
+22 −0 .github/workflows/codespell.yml
+22 −0 .github/workflows/dependency-review.yml
+9 −4 .github/workflows/release.yml
+19 −12 .github/workflows/release_dockerhub.yml
+4 −4 .github/workflows/scorecard.yml
+62 −39 .github/workflows/tests.yml
+14 −0 .pre-commit-config.yaml
+6 −2 .readthedocs.yml
+3 −3 Dockerfile
+23 −15 README.md
+9 −0 SECURITY.md
+16 −1 bin/bats
+1 −1 contrib/rpm/bats.spec
+58 −0 docs/CHANGELOG.md
+2 −2 docs/CONTRIBUTING.md
+4 −0 docs/list-links.py
+24 −0 docs/source/assets/README.md
+55 −0 docs/source/assets/dark_mode_bat.svg
+98 −0 docs/source/assets/dark_mode_cube.svg
+75 −0 docs/source/assets/dark_mode_wordmark_lowercase.svg
+80 −0 docs/source/assets/dark_mode_wordmark_uppercase.svg
+99 −0 docs/source/assets/light_mode_bat.svg
+90 −0 docs/source/assets/light_mode_cube.svg
+79 −0 docs/source/assets/light_mode_wordmark_lowercase.svg
+48 −0 docs/source/assets/light_mode_wordmark_uppercase.svg
+4 −2 docs/source/conf.py
+18 −6 docs/source/docker-usage.md
+3 −1 docs/source/faq.rst
+5 −1 docs/source/index.rst
+1 −1 docs/source/installation.rst
+2 −2 docs/source/warnings/BW02.rst
+2 −2 docs/source/warnings/BW03.rst
+67 −9 docs/source/writing-tests.md
+9 −3 install.sh
+2 −1 lib/bats-core/preprocessing.bash
+162 −18 lib/bats-core/test_functions.bash
+57 −37 lib/bats-core/tracing.bash
+1 −1 lib/bats-core/warnings.bash
+2 −2 libexec/bats-core/bats
+13 −7 libexec/bats-core/bats-exec-file
+25 −188 libexec/bats-core/bats-exec-suite
+25 −11 libexec/bats-core/bats-exec-test
+6 −2 libexec/bats-core/bats-format-junit
+1 −1 libexec/bats-core/bats-format-pretty
+1 −1 libexec/bats-core/bats-format-tap
+1 −1 libexec/bats-core/bats-format-tap13
+376 −0 libexec/bats-core/bats-gather-tests
+15 −11 libexec/bats-core/bats-preprocess
+1 −1 man/bats.7
+73 −2 man/bats.7.ronn
+1 −1 package.json
+1 −1 shellcheck.sh
+67 −149 test/bats.bats
+1,410 −0 test/bats_pipe.bats
+1 −1 test/cat-formatter.bats
+136 −0 test/filter.bats
+28 −0 test/fixtures/bats/dynamic_test_registration.bats
+8 −0 test/fixtures/bats/preserve_IFS/helper.bash
+11 −0 test/fixtures/bats/preserve_IFS/setup_suite.bash
+15 −0 test/fixtures/bats/preserve_IFS/test.bats
+1 −1 test/fixtures/bats/test_with_slash.bats
+1 −1 test/fixtures/formatter/echo-formatter
+5 −0 test/fixtures/suite/errors_in_multiple_load/a.bats
+5 −0 test/fixtures/suite/errors_in_multiple_load/b.bats
+5 −0 test/fixtures/suite/errors_in_multiple_load/c.bats
+1 −0 test/fixtures/suite/errors_in_multiple_load/test_helper.bash
+5 −0 test/fixtures/suite/multiple_load_constants/a.bats
+5 −0 test/fixtures/suite/multiple_load_constants/b.bats
+2 −0 test/fixtures/suite/multiple_load_constants/test_helper.bash
+1 −1 test/formatter.bats
+12 −12 test/install.bats
+5 −5 test/junit-formatter.bats
+2 −2 test/parallel.bats
+43 −0 test/suite.bats
+7 −5 test/tagging.bats
+12 −1 test/test_helper.bash
+1 −0 test/timeout.bats
+2 −11 test/warnings.bats
+35 −11 uninstall.sh
2 changes: 1 addition & 1 deletion test/test.bats
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ EOF
assert_output "${expected_output}"
}

@test "script should fail to get the non-existing secret with reasonable error " {
@test "script should fail to get the non-existing secret with reasonable error" {
run ./src/kd.sh non-existing-secret

assert_output --partial "Error: Unable to get secret non-existing-secret in namespace default"
Expand Down
2 changes: 1 addition & 1 deletion test/test_helper/bats-assert

0 comments on commit 506889c

Please sign in to comment.