From 47f1a9a0e73aa8ad912758bccca752d9b21bb6e6 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 25 Jul 2024 22:12:32 +0000 Subject: [PATCH] chore(deps): all non-major dependencies --- .github/workflows/lint.yml | 2 +- .github/workflows/release.yml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 2914b8c..f80ec11 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -76,4 +76,4 @@ jobs: steps: - uses: actions/checkout@v4 - name: Check for typos - uses: crate-ci/typos@v1.21.0 + uses: crate-ci/typos@v1.23.5 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e414f44..eca0e38 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -59,7 +59,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3.3.0 + uses: docker/setup-buildx-action@v3.5.0 with: platforms: ${{ env.platforms }} - name: Enable latest tag @@ -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.3.0 + uses: docker/build-push-action@v5.4.0 with: platforms: ${{ env.platforms }} tags: ${{ env.image }}:${{ needs.sanity_check.outputs.tag }}${{ env.LATEST }} @@ -91,12 +91,12 @@ jobs: -d '{ "ref": "refs/tags/${{ needs.sanity_check.outputs.tag }}", "sha": "${{ github.sha }}" }' | \ grep "Reference already exists" && echo "Tag already exists. Quitting." && exit 1 || exit 0 - name: Login to Docker Hub - uses: docker/login-action@v3.2.0 + uses: docker/login-action@v3.3.0 with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} - name: Push to Docker hub - uses: docker/build-push-action@v5.3.0 + uses: docker/build-push-action@v5.4.0 with: platforms: ${{ env.platforms }} tags: ${{ env.image }}:${{ needs.sanity_check.outputs.tag }}${{ env.LATEST }}