Skip to content

chore(deps): pin dependencies #1658

chore(deps): pin dependencies

chore(deps): pin dependencies #1658

Workflow file for this run

# See https://docs.docker.com/build/ci/github-actions/multi-platform/
name: Docker
on:
push:
branches:
- main
pull_request:
types:
- edited
- opened
- ready_for_review
- synchronize
branches:
- "*"
paths-ignore:
- "docs/**"
- ".github/workflows/publish-page.yml"
merge_group: {}
workflow_call:
inputs:
tag:
type: string
required: true
env:
REGISTRY_IMAGE: grafana/tanka
# Docker image tags. See https://github.com/docker/metadata-action for format
TAGS_CONFIG: |
type=sha,prefix={{branch}}-,format=short,enable=${{ github.ref == 'refs/heads/main' }}
type=raw,value=latest,enable=${{ inputs.tag != '' }}
type=semver,pattern={{version}},value=${{ inputs.tag }},enable=${{ inputs.tag != '' }}
jobs:
build:
permissions:
contents: read
id-token: write
strategy:
fail-fast: false
matrix:
platform:
- ubuntu-24.04
- ubuntu-24.04-arm
runs-on: ${{ matrix.platform }}
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
persist-credentials: false
- name: Docker meta
id: meta
uses: docker/metadata-action@c1e51972afc2121e065aed6d45c65596fe445f3f # v5.8.0
with:
images: ${{ env.REGISTRY_IMAGE }}
tags: ${{ env.TAGS_CONFIG }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@e468171a9de216ec08956ac3ada2f0791b6bd435 # v3.11.1
- name: Login to DockerHub
if: github.event_name == 'push'
uses: grafana/shared-workflows/actions/dockerhub-login@c6d954f7cd9c0022018982e01268de6cb75b913c # dockerhub-login/v1.0.2
- name: Build and push by digest
id: build
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6.18.0
with:
context: .
labels: ${{ steps.meta.outputs.labels }}
outputs: type=image,name=${{ env.REGISTRY_IMAGE }},push-by-digest=true,name-canonical=true,push=${{ github.event_name == 'push' }}
- name: Export digest
id: digest
if: github.event_name == 'push'
run: | # zizmor: ignore[template-injection] This relies on data generated by docker/buid-push-action and should therefore be safe
mkdir -p /tmp/digests
digest="${{ steps.build.outputs.digest }}"
touch "/tmp/digests/${digest#sha256:}"
echo "artifact_name=digests-${{ matrix.platform }}" | sed -e 's/\//-/g' >> "$GITHUB_OUTPUT"
- name: Upload digest
if: github.event_name == 'push'
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
with:
name: ${{ steps.digest.outputs.artifact_name }}
path: /tmp/digests/*
if-no-files-found: error
retention-days: 1
merge:
runs-on: ubuntu-24.04
if: github.event_name == 'push'
permissions:
contents: read
id-token: write
needs:
- build
steps:
- name: Download digests (linux/arm64)
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
with:
name: digests-ubuntu-24.04-arm
path: /tmp/digests-linux-arm64
- name: Download digests (linux/amd64)
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
with:
name: digests-ubuntu-24.04
path: /tmp/digests-linux-amd64
- name: Merge digests
run: |
mkdir -p /tmp/digests
cp /tmp/digests-linux-amd64/* /tmp/digests/
cp /tmp/digests-linux-arm64/* /tmp/digests/
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@e468171a9de216ec08956ac3ada2f0791b6bd435 # v3.11.1
- name: Docker meta
id: meta
uses: docker/metadata-action@c1e51972afc2121e065aed6d45c65596fe445f3f # v5.8.0
with:
images: ${{ env.REGISTRY_IMAGE }}
tags: ${{ env.TAGS_CONFIG }}
- name: Login to DockerHub
uses: grafana/shared-workflows/actions/dockerhub-login@c6d954f7cd9c0022018982e01268de6cb75b913c # dockerhub-login/v1.0.2
- name: Create manifest list and push
working-directory: /tmp/digests
run: |
docker buildx imagetools create $(jq -cr '.tags | map("-t " + .) | join(" ")' <<< "$DOCKER_METADATA_OUTPUT_JSON") \
$(printf '${{ env.REGISTRY_IMAGE }}@sha256:%s ' *)
- name: Inspect image
env:
RELEASE_VERSION: "${{ steps.meta.outputs.version }}"
run: |
docker buildx imagetools inspect "${{ env.REGISTRY_IMAGE }}:${RELEASE_VERSION}"