Skip to content

Update redis[hiredis] requirement from >=5.0.0 to >=7.4.0 #240

Update redis[hiredis] requirement from >=5.0.0 to >=7.4.0

Update redis[hiredis] requirement from >=5.0.0 to >=7.4.0 #240

Workflow file for this run

name: Docker build & push
on:
workflow_dispatch:
push:
branches:
- main
tags:
- "*"
pull_request:
jobs:
docker:
name: Docker Images
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
packages: write
steps:
- uses: actions/checkout@v4
- uses: docker/setup-buildx-action@v3
- uses: docker/login-action@v3
if: github.event_name != 'pull_request'
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- uses: docker/metadata-action@v5
id: docker-meta
with:
images: ghcr.io/${{ github.repository }}
tags: type=raw,value=latest
- uses: docker/build-push-action@v6
with:
context: .
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.docker-meta.outputs.tags }}
labels: ${{ steps.docker-meta.outputs.labels }}