Skip to content

feat: Add 3.9.0 support (#48) #113

feat: Add 3.9.0 support (#48)

feat: Add 3.9.0 support (#48) #113

Workflow file for this run

name: Dockerfiles [lint]
on:
push:
branches:
- "main"
pull_request:
types: [opened, synchronize, reopened]
branches:
- "*"
paths:
- "!**"
- "Dockerfile"
- ".github/workflows/**"
- "assets/**"
- "docker-bake.hcl"
- "Makefile"
- "build.sh"
jobs:
lint-dockerfiles:
strategy:
fail-fast: false
max-parallel: 4
matrix:
dockerfile:
[
"./Dockerfile",
]
runs-on: "ubuntu-22.04"
name: Lint ${{ matrix.dockerfile }}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Lint
uses: jbergstroem/hadolint-gh-action@v1
with:
dockerfile: ${{ matrix.dockerfile }}
annotate: true
error_level: 2
build-images:
runs-on: ubuntu-22.04
permissions:
contents: read
packages: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
with:
platforms: 'linux/arm64,linux/amd64'
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build Docker images
uses: docker/[email protected]
with:
push: false
files: 'docker-bake.hcl'