Skip to content

chore(deps): bump @tanstack/react-query from 5.66.11 to 5.67.2 #81

chore(deps): bump @tanstack/react-query from 5.66.11 to 5.67.2

chore(deps): bump @tanstack/react-query from 5.66.11 to 5.67.2 #81

Workflow file for this run

name: Build
on:
push:
branches:
- '**'
tags-ignore:
- 'v*'
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
jobs:
docker-build:
runs-on: ubuntu-latest
name: Docker image build
permissions:
packages: write
contents: read
steps:
# Checkout the repository code
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: '0'
submodules: true
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to the Docker registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- id: string
name: Lowercase the name
uses: AsZc/change-string-case-action@v6
with:
string: ${{ env.IMAGE_NAME }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
tags: |
type=raw,value=latest,enable={{is_default_branch}}
type=schedule,pattern={{date 'YYYYMMDD-hhmmss' tz='Europe/Berlin'}}
type=semver,enable=true,priority=900,prefix=,suffix=,pattern=,value=
type=sha,prefix={{branch}}
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
type=sha,format=long
type=sha,format=long,prefix={{branch}}
flavor: |
latest=auto
suffix=-${{ matrix.environment.name }},onlatest=true
images: '${{ env.REGISTRY }}/${{ steps.string.outputs.lowercase }}'
- name: Cache Docker layers
uses: actions/cache@v4
if: always()
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ github.sha }}
restore-keys: |
${{ runner.os }}-buildx-
- name: Build and push
uses: docker/build-push-action@v6
if: github.event_name != 'pull_request'
with:
push: 'true'
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
annotations: ${{ steps.meta.outputs.annotations }}
build-args: ${{ matrix.environment.docker-build-args }}
platforms: linux/amd64,linux/arm64
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache