Skip to content

Bump serde_json from 1.0.128 to 1.0.132 #195

Bump serde_json from 1.0.128 to 1.0.132

Bump serde_json from 1.0.128 to 1.0.132 #195

Workflow file for this run

name: Docker
on:
push:
branches:
- master
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to DockerHub
uses: docker/login-action@v3
with:
username: ${{secrets.DOCKER_USER}}
password: ${{secrets.DOCKER_TOKEN}}
- name: Build and push
uses: docker/build-push-action@v6
with:
platforms: linux/amd64,linux/arm64
push: true
pull: true
tags: ${{ github.repository }}:latest
cache-from: type=gha
cache-to: type=gha,mode=max