Skip to content

⬆️ Bump serde_json from 1.0.125 to 1.0.127 in /internal/filterdsl/rust-crate #56

⬆️ Bump serde_json from 1.0.125 to 1.0.127 in /internal/filterdsl/rust-crate

⬆️ Bump serde_json from 1.0.125 to 1.0.127 in /internal/filterdsl/rust-crate #56

Workflow file for this run

---
name: build
on:
push:
branches:
- main
pull_request:
branches:
- main
types:
- opened
- synchronize
- reopened
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout@scm
uses: actions/checkout@v4
- name: setup@docker
uses: docker/setup-buildx-action@v3
- name: cache@docker
uses: actions/cache@v4
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ github.sha }}
restore-keys: |
${{ runner.os }}-buildx-
- name: build@docker
uses: docker/build-push-action@v6
with:
context: .
file: ./docker/flowg.dockerfile
tags: "linksociety/flowg:latest"
push: false
load: true
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache