Skip to content

docker-pin-check

docker-pin-check #1

# SPDX-FileCopyrightText: Copyright (c) 2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
#
# Weekly check that the pinned Dockerfile base-image digest is still current.
# Fails with an actionable message when a newer node:22-slim is available.
name: docker-pin-check
on:
schedule:
# Every Monday at 09:00 UTC
- cron: "0 9 * * 1"
workflow_dispatch:
permissions:
contents: read
jobs:
check-pin:
if: github.repository == 'NVIDIA/NemoClaw'
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Check Dockerfile base-image pin
run: |
bash scripts/update-docker-pin.sh --check
DOCKERFILE=Dockerfile.base bash scripts/update-docker-pin.sh --check