From 34509346f498b9c2b291899453b422740012c62a Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 8 Mar 2024 10:48:57 +0000 Subject: [PATCH] chore(deps): all non-major dependencies --- .github/workflows/lint.yml | 2 +- .github/workflows/release.yml | 4 ++-- .github/workflows/test.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 6fbb167..96f4818 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -20,7 +20,7 @@ jobs: - uses: actions/checkout@v4 - name: Install Shellcheck env: - version: "0.9.0" + version: "0.10.0" run: curl -Ls "https://github.com/koalaman/shellcheck/releases/download/v${{ env.version }}/shellcheck-v${{ env.version }}.linux.x86_64.tar.xz" | sudo tar -x -J --wildcards --strip-components=1 -C /usr/local/bin "shellcheck*/shellcheck" - name: Verify shell scripts run: | diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a1118fe..0ed59ab 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -70,7 +70,7 @@ jobs: echo BUILD_DATE="$(date -u +'%Y-%m-%dT%H:%M:%SZ')" >> "$GITHUB_ENV" echo BUILD_REF="$(git rev-parse --short HEAD)" >> "$GITHUB_ENV" - name: Build containers for all platforms - uses: docker/build-push-action@v5.1.0 + uses: docker/build-push-action@v5.2.0 with: platforms: ${{ env.platforms }} tags: ${{ env.image }}:${{ needs.sanity_check.outputs.tag }}${{ env.LATEST }} @@ -96,7 +96,7 @@ jobs: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} - name: Push to Docker hub - uses: docker/build-push-action@v5.1.0 + uses: docker/build-push-action@v5.2.0 with: platforms: ${{ env.platforms }} tags: ${{ env.image }}:${{ needs.sanity_check.outputs.tag }}${{ env.LATEST }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 08269f8..81b283b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -19,6 +19,6 @@ jobs: - name: Download mariadb cli run: docker pull jbergstroem/mariadb-client-alpine:latest - name: Install bash_unit - run: curl -Ls "https://github.com/pgrange/bash_unit/archive/refs/tags/v2.2.0.tar.gz" | tar -x -z --wildcards --strip-components=1 -C /usr/local/bin "*/bash_unit" + run: curl -Ls "https://github.com/pgrange/bash_unit/archive/refs/tags/v2.3.1.tar.gz" | tar -x -z --wildcards --strip-components=1 -C /usr/local/bin "*/bash_unit" - name: Run suite run: bash_unit test/*.sh