From 78ef076af25193c2cb5f54222e888cb6a8542870 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 23 Apr 2026 03:58:42 +0000 Subject: [PATCH] build(deps): bump the actions group across 1 directory with 2 updates Bumps the actions group with 2 updates in the / directory: [actions/create-github-app-token](https://github.com/actions/create-github-app-token) and [useblacksmith/build-push-action](https://github.com/useblacksmith/build-push-action). Updates `actions/create-github-app-token` from 3.0.0 to 3.1.1 - [Release notes](https://github.com/actions/create-github-app-token/releases) - [Commits](https://github.com/actions/create-github-app-token/compare/f8d387b68d61c58ab83c6c016672934102569859...1b10c78c7865c340bc4f6099eb2f838309f1e8c3) Updates `useblacksmith/build-push-action` from 2 to 2.1.0 - [Release notes](https://github.com/useblacksmith/build-push-action/releases) - [Commits](https://github.com/useblacksmith/build-push-action/compare/v2...v2.1.0) --- updated-dependencies: - dependency-name: actions/create-github-app-token dependency-version: 3.1.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: useblacksmith/build-push-action dependency-version: 2.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions ... Signed-off-by: dependabot[bot] --- .github/workflows/auto-response.yml | 4 ++-- .github/workflows/docker-release.yml | 8 ++++---- .github/workflows/install-smoke.yml | 8 ++++---- .github/workflows/labeler.yml | 12 ++++++------ .github/workflows/stale.yml | 6 +++--- 5 files changed, 19 insertions(+), 19 deletions(-) diff --git a/.github/workflows/auto-response.yml b/.github/workflows/auto-response.yml index da5a83fd9d..6c9e02e04e 100644 --- a/.github/workflows/auto-response.yml +++ b/.github/workflows/auto-response.yml @@ -17,13 +17,13 @@ jobs: pull-requests: write runs-on: blacksmith-16vcpu-ubuntu-2404 steps: - - uses: actions/create-github-app-token@f8d387b68d61c58ab83c6c016672934102569859 # v3.0.0 + - uses: actions/create-github-app-token@1b10c78c7865c340bc4f6099eb2f838309f1e8c3 # v3.1.1 id: app-token continue-on-error: true with: app-id: "2729701" private-key: ${{ secrets.GH_APP_PRIVATE_KEY }} - - uses: actions/create-github-app-token@f8d387b68d61c58ab83c6c016672934102569859 # v3.0.0 + - uses: actions/create-github-app-token@1b10c78c7865c340bc4f6099eb2f838309f1e8c3 # v3.1.1 id: app-token-fallback if: steps.app-token.outcome == 'failure' with: diff --git a/.github/workflows/docker-release.yml b/.github/workflows/docker-release.yml index 2a9c49ae4f..5ab85f5ac9 100644 --- a/.github/workflows/docker-release.yml +++ b/.github/workflows/docker-release.yml @@ -101,7 +101,7 @@ jobs: - name: Build and push amd64 image id: build - uses: useblacksmith/build-push-action@v2 + uses: useblacksmith/build-push-action@v2.1.0 with: context: . platforms: linux/amd64 @@ -112,7 +112,7 @@ jobs: - name: Build and push amd64 slim image id: build-slim - uses: useblacksmith/build-push-action@v2 + uses: useblacksmith/build-push-action@v2.1.0 with: context: . platforms: linux/amd64 @@ -202,7 +202,7 @@ jobs: - name: Build and push arm64 image id: build - uses: useblacksmith/build-push-action@v2 + uses: useblacksmith/build-push-action@v2.1.0 with: context: . platforms: linux/arm64 @@ -213,7 +213,7 @@ jobs: - name: Build and push arm64 slim image id: build-slim - uses: useblacksmith/build-push-action@v2 + uses: useblacksmith/build-push-action@v2.1.0 with: context: . platforms: linux/arm64 diff --git a/.github/workflows/install-smoke.yml b/.github/workflows/install-smoke.yml index 50a62519ef..a0a4ca0d16 100644 --- a/.github/workflows/install-smoke.yml +++ b/.github/workflows/install-smoke.yml @@ -46,7 +46,7 @@ jobs: # Blacksmith can fall back to the local docker driver, which rejects gha # cache export/import. Keep smoke builds driver-agnostic. - name: Build root Dockerfile smoke image - uses: useblacksmith/build-push-action@v2 + uses: useblacksmith/build-push-action@v2.1.0 with: context: . file: ./Dockerfile @@ -63,7 +63,7 @@ jobs: # extension deps without breaking image build or basic CLI startup. It # does not exercise runtime loading/registration of diagnostics-otel. - name: Build extension Dockerfile smoke image - uses: useblacksmith/build-push-action@v2 + uses: useblacksmith/build-push-action@v2.1.0 with: context: . file: ./Dockerfile @@ -79,7 +79,7 @@ jobs: docker run --rm --entrypoint sh openclaw-ext-smoke:local -lc 'which openclaw && openclaw --version' - name: Build installer smoke image - uses: useblacksmith/build-push-action@v2 + uses: useblacksmith/build-push-action@v2.1.0 with: context: ./scripts/docker file: ./scripts/docker/install-sh-smoke/Dockerfile @@ -90,7 +90,7 @@ jobs: - name: Build installer non-root image if: github.event_name != 'pull_request' - uses: useblacksmith/build-push-action@v2 + uses: useblacksmith/build-push-action@v2.1.0 with: context: ./scripts/docker file: ./scripts/docker/install-sh-nonroot/Dockerfile diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml index 454f46be76..3a59399da3 100644 --- a/.github/workflows/labeler.yml +++ b/.github/workflows/labeler.yml @@ -25,13 +25,13 @@ jobs: pull-requests: write runs-on: blacksmith-16vcpu-ubuntu-2404 steps: - - uses: actions/create-github-app-token@f8d387b68d61c58ab83c6c016672934102569859 # v3.0.0 + - uses: actions/create-github-app-token@1b10c78c7865c340bc4f6099eb2f838309f1e8c3 # v3.1.1 id: app-token continue-on-error: true with: app-id: "2729701" private-key: ${{ secrets.GH_APP_PRIVATE_KEY }} - - uses: actions/create-github-app-token@f8d387b68d61c58ab83c6c016672934102569859 # v3.0.0 + - uses: actions/create-github-app-token@1b10c78c7865c340bc4f6099eb2f838309f1e8c3 # v3.1.1 id: app-token-fallback if: steps.app-token.outcome == 'failure' with: @@ -381,13 +381,13 @@ jobs: pull-requests: write runs-on: blacksmith-16vcpu-ubuntu-2404 steps: - - uses: actions/create-github-app-token@f8d387b68d61c58ab83c6c016672934102569859 # v3.0.0 + - uses: actions/create-github-app-token@1b10c78c7865c340bc4f6099eb2f838309f1e8c3 # v3.1.1 id: app-token continue-on-error: true with: app-id: "2729701" private-key: ${{ secrets.GH_APP_PRIVATE_KEY }} - - uses: actions/create-github-app-token@f8d387b68d61c58ab83c6c016672934102569859 # v3.0.0 + - uses: actions/create-github-app-token@1b10c78c7865c340bc4f6099eb2f838309f1e8c3 # v3.1.1 id: app-token-fallback if: steps.app-token.outcome == 'failure' with: @@ -629,13 +629,13 @@ jobs: issues: write runs-on: blacksmith-16vcpu-ubuntu-2404 steps: - - uses: actions/create-github-app-token@f8d387b68d61c58ab83c6c016672934102569859 # v3.0.0 + - uses: actions/create-github-app-token@1b10c78c7865c340bc4f6099eb2f838309f1e8c3 # v3.1.1 id: app-token continue-on-error: true with: app-id: "2729701" private-key: ${{ secrets.GH_APP_PRIVATE_KEY }} - - uses: actions/create-github-app-token@f8d387b68d61c58ab83c6c016672934102569859 # v3.0.0 + - uses: actions/create-github-app-token@1b10c78c7865c340bc4f6099eb2f838309f1e8c3 # v3.1.1 id: app-token-fallback if: steps.app-token.outcome == 'failure' with: diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index d2088d83c3..0f4fc58a53 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -14,13 +14,13 @@ jobs: pull-requests: write runs-on: blacksmith-16vcpu-ubuntu-2404 steps: - - uses: actions/create-github-app-token@f8d387b68d61c58ab83c6c016672934102569859 # v3.0.0 + - uses: actions/create-github-app-token@1b10c78c7865c340bc4f6099eb2f838309f1e8c3 # v3.1.1 id: app-token continue-on-error: true with: app-id: "2729701" private-key: ${{ secrets.GH_APP_PRIVATE_KEY }} - - uses: actions/create-github-app-token@f8d387b68d61c58ab83c6c016672934102569859 # v3.0.0 + - uses: actions/create-github-app-token@1b10c78c7865c340bc4f6099eb2f838309f1e8c3 # v3.1.1 id: app-token-fallback continue-on-error: true with: @@ -121,7 +121,7 @@ jobs: issues: write runs-on: blacksmith-16vcpu-ubuntu-2404 steps: - - uses: actions/create-github-app-token@f8d387b68d61c58ab83c6c016672934102569859 # v3.0.0 + - uses: actions/create-github-app-token@1b10c78c7865c340bc4f6099eb2f838309f1e8c3 # v3.1.1 id: app-token with: app-id: "2729701"