diff --git a/.github/dependabot.yml b/.github/dependabot.yml deleted file mode 100644 index 80f5a4b..0000000 --- a/.github/dependabot.yml +++ /dev/null @@ -1,8 +0,0 @@ -version: 2 -updates: - # Enable version updates for GitHub Actions - - package-ecosystem: "github-actions" - directory: "/" - schedule: - interval: "weekly" - open-pull-requests-limit: 10 diff --git a/.github/workflows/versioning.yml b/.github/workflows/versioning.yml index bf6bad3..4171925 100644 --- a/.github/workflows/versioning.yml +++ b/.github/workflows/versioning.yml @@ -21,6 +21,6 @@ jobs: fetch-depth: 0 - name: Release - uses: cycjimmy/semantic-release-action@16ca923e6ccbb50770c415a0ccd43709a8c5f7a4 #v4.2.2 + uses: cycjimmy/semantic-release-action@9cc899c47e6841430bbaedb43de1560a568dfd16 #v5.0.0 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/common/update_brew.sh b/common/update_brew.sh index d09d23d..28721bf 100755 --- a/common/update_brew.sh +++ b/common/update_brew.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -set -ex +set -e brew update brew upgrade diff --git a/node/assert_tools.sh b/node/assert_tools.sh index 244b4cb..60d3947 100755 --- a/node/assert_tools.sh +++ b/node/assert_tools.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -set -ex +set -e echo "Node: $(which node)" echo "NPM: $(which npm)" diff --git a/node/load_nvm.sh b/node/load_nvm.sh index e143a55..7a7a04c 100755 --- a/node/load_nvm.sh +++ b/node/load_nvm.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -set -ex +set -e export NVM_DIR="$HOME/.nvm" [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm diff --git a/node/setup_dev.sh b/node/setup_dev.sh index 50493e8..cffd18e 100755 --- a/node/setup_dev.sh +++ b/node/setup_dev.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -set -ex +set -e chmod +x "$(dirname "$0")/setup_zshrc_nvm.sh" "$(dirname "$0")/setup_zshrc_nvm.sh" diff --git a/node/setup_zshrc_nvm.sh b/node/setup_zshrc_nvm.sh index 859c505..bac5517 100755 --- a/node/setup_zshrc_nvm.sh +++ b/node/setup_zshrc_nvm.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -set -ex +set -e if ! grep -q "# >>> nvm initialize >>>" ~/.zshrc; then if [ -s ~/.zshrc ] && [ "$(tail -c 1 ~/.zshrc | wc -l)" -eq 0 ]; then diff --git a/node/update_node.sh b/node/update_node.sh index 86e7861..1151c03 100755 --- a/node/update_node.sh +++ b/node/update_node.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -set -ex +set -e chmod +x "$(dirname "$0")/load_nvm.sh" source "$(dirname "$0")/load_nvm.sh" diff --git a/python/clean.sh b/python/clean.sh index de5aff4..12dbf4c 100755 --- a/python/clean.sh +++ b/python/clean.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -set -ex +set -e rm -rf .mypy_cache/ rm -rf .ruff_cache/ diff --git a/python/clean_all.sh b/python/clean_all.sh index fadbf7f..c6815f2 100755 --- a/python/clean_all.sh +++ b/python/clean_all.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -set -ex +set -e chmod +x "$(dirname "$0")/clean.sh" "$(dirname "$0")/clean.sh" diff --git a/python/clean_venv.sh b/python/clean_venv.sh index 84a8304..840bdfe 100755 --- a/python/clean_venv.sh +++ b/python/clean_venv.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -set -ex +set -e rm -rf .venv/ diff --git a/python/poetry/assert_python_poetry.sh b/python/poetry/assert_python_poetry.sh index 9c30992..fe1f7af 100755 --- a/python/poetry/assert_python_poetry.sh +++ b/python/poetry/assert_python_poetry.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -set -ex +set -e echo "Python: $(which python)" echo "Pip: $(which pip)" diff --git a/python/poetry/assert_setup_dev.sh b/python/poetry/assert_setup_dev.sh index 5218138..556c6f6 100755 --- a/python/poetry/assert_setup_dev.sh +++ b/python/poetry/assert_setup_dev.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -set -ex +set -e echo "Asserting setup_dev..." diff --git a/python/poetry/setup_dev.sh b/python/poetry/setup_dev.sh index 6f94b70..d4f6ef9 100755 --- a/python/poetry/setup_dev.sh +++ b/python/poetry/setup_dev.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -set -ex +set -e while [[ $# -gt 0 ]]; do case $1 in diff --git a/python/poetry/setup_poetry.sh b/python/poetry/setup_poetry.sh index 6fec4bd..02d679c 100755 --- a/python/poetry/setup_poetry.sh +++ b/python/poetry/setup_poetry.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -set -ex +set -e pipx install poetry pipx ensurepath diff --git a/python/setup_pipx.sh b/python/setup_pipx.sh index a3c3cd8..9a8997e 100755 --- a/python/setup_pipx.sh +++ b/python/setup_pipx.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -set -ex +set -e brew install pipx pipx upgrade-all diff --git a/python/setup_pyenv.sh b/python/setup_pyenv.sh index 575ff65..a94add0 100755 --- a/python/setup_pyenv.sh +++ b/python/setup_pyenv.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -set -ex +set -e brew install pyenv --quiet if [ ! -d "$(pyenv root)/plugins/pyenv-update" ]; then diff --git a/python/setup_pyenv_zshrc.sh b/python/setup_pyenv_zshrc.sh index e8d8d55..b5fb696 100755 --- a/python/setup_pyenv_zshrc.sh +++ b/python/setup_pyenv_zshrc.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -set -ex +set -e if ! grep -q "# >>> pyenv initialize >>>" ~/.zshrc; then if [ -s ~/.zshrc ] && [ "$(tail -c 1 ~/.zshrc | wc -l)" -eq 0 ]; then diff --git a/python/setup_venv_zshrc.sh b/python/setup_venv_zshrc.sh index f1bf1b3..620d3d4 100755 --- a/python/setup_venv_zshrc.sh +++ b/python/setup_venv_zshrc.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -set -ex +set -e if ! grep -q "# >>> .venv initialize >>>" ~/.zshrc; then if [ -s ~/.zshrc ] && [ "$(tail -c 1 ~/.zshrc | wc -l)" -eq 0 ]; then diff --git a/rust/assert_setup_dev.sh b/rust/assert_setup_dev.sh index dd7ee92..8c3bbfc 100755 --- a/rust/assert_setup_dev.sh +++ b/rust/assert_setup_dev.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -set -ex +set -e echo "Rust: $(which rustc)" echo "Cargo: $(which cargo)" diff --git a/rust/setup_dev.sh b/rust/setup_dev.sh index 8dc1e84..467f95a 100755 --- a/rust/setup_dev.sh +++ b/rust/setup_dev.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -set -ex +set -e brew install rustup rustup-init -y diff --git a/shell/install_shell_deps.sh b/shell/install_shell_deps.sh index 6019616..e9d0f6a 100755 --- a/shell/install_shell_deps.sh +++ b/shell/install_shell_deps.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -set -ex +set -e if [[ "$OSTYPE" == "darwin"* ]]; then brew install shfmt shellcheck prettier