chore(deps): update go to v1.23.4 (main) (patch) #601
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check images digest for multi-arch | |
on: | |
pull_request: | |
paths: | |
- '**[dD]ockerfile**' | |
- '.github/workflow/digestcheck.yaml' | |
- 'contrib/digestcheck.sh' | |
- '!**vendor**' | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
with: | |
fetch-depth: 0 # because we also need the main branch | |
- name: Install crane | |
env: | |
VERSION: "v0.15.2" | |
run: | | |
curl -sL "https://github.com/google/go-containerregistry/releases/download/$VERSION/go-containerregistry_Linux_x86_64.tar.gz" > go-containerregistry.tar.gz | |
tar -zxvf go-containerregistry.tar.gz -C /usr/local/bin/ crane | |
- name: Check digests | |
env: | |
TERM: xterm-color | |
BASE_REF: ${{ github.base_ref }} | |
run: git diff --name-only origin/$BASE_REF | xargs ./contrib/digestcheck.sh |