diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fa6f0bf124..f39e7c0edb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -341,7 +341,7 @@ jobs: - name: Setup Python id: setup-python - uses: actions/setup-python@v6 + uses: actions/setup-python@v6.2.0 with: python-version: "3.12" cache: "pip" @@ -351,7 +351,7 @@ jobs: .github/workflows/ci.yml - name: Restore pre-commit cache - uses: actions/cache@v5 + uses: actions/cache@v5.0.5 with: path: ~/.cache/pre-commit key: pre-commit-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('.pre-commit-config.yaml') }}-${{ env.PRE_COMMIT_CACHE_KEY_SUFFIX }} @@ -475,7 +475,7 @@ jobs: run: pnpm ui:build - name: Cache dist build - uses: actions/cache@v5 + uses: actions/cache@v5.0.5 with: path: dist/ key: ${{ runner.os }}-dist-build-${{ github.sha }} @@ -941,7 +941,7 @@ jobs: - name: Restore dist cache id: dist-cache if: matrix.requires_dist == true - uses: actions/cache@v5 + uses: actions/cache@v5.0.5 with: path: dist/ key: ${{ runner.os }}-dist-build-${{ github.sha }} @@ -1392,7 +1392,7 @@ jobs: - name: Restore dist cache id: build-smoke-dist-cache if: github.event_name == 'push' - uses: actions/cache@v5 + uses: actions/cache@v5.0.5 with: path: dist/ key: ${{ runner.os }}-dist-build-${{ github.sha }} @@ -1504,7 +1504,7 @@ jobs: submodules: false - name: Setup Python - uses: actions/setup-python@v6 + uses: actions/setup-python@v6.2.0 with: python-version: "3.12" @@ -1743,7 +1743,7 @@ jobs: echo "key=$toolchain_key" >> "$GITHUB_OUTPUT" - name: Cache SwiftPM - uses: actions/cache@v5 + uses: actions/cache@v5.0.5 with: path: ~/Library/Caches/org.swift.swiftpm key: ${{ runner.os }}-swiftpm-${{ hashFiles('apps/macos/Package.resolved') }} @@ -1751,7 +1751,7 @@ jobs: ${{ runner.os }}-swiftpm- - name: Cache Swift build directory - uses: actions/cache@v5 + uses: actions/cache@v5.0.5 with: path: apps/macos/.build key: ${{ runner.os }}-swift-build-v1-${{ steps.swift-toolchain.outputs.key }}-${{ hashFiles('apps/macos/Package.swift', 'apps/macos/Package.resolved', 'apps/shared/OpenClawKit/Package.swift', 'Swabble/Package.swift') }} diff --git a/.github/workflows/docker-release.yml b/.github/workflows/docker-release.yml index 49b7b957a3..2e361fe93a 100644 --- a/.github/workflows/docker-release.yml +++ b/.github/workflows/docker-release.yml @@ -83,10 +83,10 @@ jobs: fetch-depth: 0 - name: Set up Docker Builder - uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # v4 + uses: docker/setup-buildx-action@d7f5e7f509e45cec5c76c4d5afdd7de93d0b3df5 # v4 - name: Login to GitHub Container Registry - uses: docker/login-action@4907a6ddec9925e35a0a9e82d7399ccc52663121 # v4 + uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee # v4 with: registry: ${{ env.REGISTRY }} username: ${{ github.repository_owner }} @@ -200,10 +200,10 @@ jobs: fetch-depth: 0 - name: Set up Docker Builder - uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # v4 + uses: docker/setup-buildx-action@d7f5e7f509e45cec5c76c4d5afdd7de93d0b3df5 # v4 - name: Login to GitHub Container Registry - uses: docker/login-action@4907a6ddec9925e35a0a9e82d7399ccc52663121 # v4 + uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee # v4 with: registry: ${{ env.REGISTRY }} username: ${{ github.repository_owner }} @@ -314,7 +314,7 @@ jobs: fetch-depth: 0 - name: Login to GitHub Container Registry - uses: docker/login-action@4907a6ddec9925e35a0a9e82d7399ccc52663121 # v4 + uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee # v4 with: registry: ${{ env.REGISTRY }} username: ${{ github.repository_owner }} diff --git a/.github/workflows/install-smoke.yml b/.github/workflows/install-smoke.yml index 0211e1fc39..8b5d9af76b 100644 --- a/.github/workflows/install-smoke.yml +++ b/.github/workflows/install-smoke.yml @@ -95,12 +95,12 @@ jobs: uses: actions/checkout@v6 - name: Set up Docker Builder - uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # v4 + uses: docker/setup-buildx-action@d7f5e7f509e45cec5c76c4d5afdd7de93d0b3df5 # v4 # 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@cbd1f60d194a98cb3be5523b15134501eaf0fbf3 # v2 + uses: useblacksmith/build-push-action@fb9e3e6a9299c78462bfadd0d93352c316adc9b8 # v2 with: context: . file: ./Dockerfile @@ -119,7 +119,7 @@ jobs: # runtime deps declared by the plugin and that matrix discovery stays # healthy in the final runtime image. - name: Build extension Dockerfile smoke image - uses: useblacksmith/build-push-action@cbd1f60d194a98cb3be5523b15134501eaf0fbf3 # v2 + uses: useblacksmith/build-push-action@fb9e3e6a9299c78462bfadd0d93352c316adc9b8 # v2 with: context: . file: ./Dockerfile @@ -177,7 +177,7 @@ jobs: ' - name: Build installer smoke image - uses: useblacksmith/build-push-action@cbd1f60d194a98cb3be5523b15134501eaf0fbf3 # v2 + uses: useblacksmith/build-push-action@fb9e3e6a9299c78462bfadd0d93352c316adc9b8 # v2 with: context: ./scripts/docker file: ./scripts/docker/install-sh-smoke/Dockerfile @@ -188,7 +188,7 @@ jobs: - name: Build installer non-root image if: github.event_name != 'pull_request' - uses: useblacksmith/build-push-action@cbd1f60d194a98cb3be5523b15134501eaf0fbf3 # v2 + uses: useblacksmith/build-push-action@fb9e3e6a9299c78462bfadd0d93352c316adc9b8 # v2 with: context: ./scripts/docker file: ./scripts/docker/install-sh-nonroot/Dockerfile diff --git a/.github/workflows/sandbox-common-smoke.yml b/.github/workflows/sandbox-common-smoke.yml index 54ff92751e..084867ebf2 100644 --- a/.github/workflows/sandbox-common-smoke.yml +++ b/.github/workflows/sandbox-common-smoke.yml @@ -35,7 +35,7 @@ jobs: submodules: false - name: Set up Docker Builder - uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # v4 + uses: docker/setup-buildx-action@d7f5e7f509e45cec5c76c4d5afdd7de93d0b3df5 # v4 - name: Build minimal sandbox base (USER sandbox) shell: bash