chore: upgrade requirements #42
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ci | |
concurrency: | |
cancel-in-progress: true | |
group: ci-${{ github.event_name }}-${{ github.ref_name }} | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
env: | |
REGISTRY: ghcr.io | |
GITHUB_REPOSITORY: ${{ github.repository }} | |
DOCKER_REPOSITORY: developerfriendly/${{ github.event.repository.name }} | |
permissions: | |
contents: read | |
jobs: | |
build-docker: | |
permissions: | |
contents: read | |
packages: write | |
pull-requests: write | |
security-events: write | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Set up QEMU needed for Docker | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v3 | |
with: | |
password: ${{ secrets.GITHUB_TOKEN }} | |
registry: ${{ env.REGISTRY }} | |
username: ${{ github.actor }} | |
- id: readme | |
name: Read README | |
uses: actions/github-script@v7 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
script: | | |
'use strict' | |
const { promises: fs } = require('fs') | |
const main = async () => { | |
const path = 'README.md' | |
let content = await fs.readFile(path, 'utf8') | |
core.setOutput('content', content) | |
} | |
main().catch(err => core.setFailed(err.message)) | |
- name: Login to Docker hub | |
uses: docker/login-action@v3 | |
with: | |
password: ${{ secrets.DOCKERHUB_PASSWORD }} | |
registry: docker.io | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
- id: meta | |
name: Docker metadata | |
uses: docker/metadata-action@v5 | |
with: | |
images: | | |
${{ env.REGISTRY }}/${{ env.GITHUB_REPOSITORY }} | |
labels: | | |
org.opencontainers.image.description=${{ steps.readme.outputs.content }} | |
- id: short-sha | |
name: Set image tag | |
run: | | |
echo "short-sha=$(echo ${{ github.sha }} | cut -c 1-7 )" >> $GITHUB_OUTPUT | |
- if: github.ref == 'refs/heads/main' | |
name: Build and push Docker image - main | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
labels: ${{ steps.meta.outputs.labels }} | |
push: true | |
platforms: linux/amd64,linux/arm64 | |
tags: | | |
${{ env.REGISTRY }}/${{ env.GITHUB_REPOSITORY }}:${{ steps.short-sha.outputs.short-sha }} | |
${{ env.REGISTRY }}/${{ env.GITHUB_REPOSITORY }}:${{ github.run_id }} | |
${{ env.REGISTRY }}/${{ env.GITHUB_REPOSITORY }}:latest | |
${{ env.DOCKER_REPOSITORY }}:${{ steps.short-sha.outputs.short-sha }} | |
${{ env.DOCKER_REPOSITORY }}:latest | |
- if: github.event_name == 'pull_request' | |
name: Build and push Docker image - pull request | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
labels: ${{ steps.meta.outputs.labels }} | |
push: true | |
platforms: linux/amd64 | |
tags: | | |
${{ env.REGISTRY }}/${{ env.GITHUB_REPOSITORY }}:${{ steps.short-sha.outputs.short-sha }} | |
${{ env.REGISTRY }}/${{ env.GITHUB_REPOSITORY }}:${{ github.run_id }} | |
- name: Docker Scout - cves | |
uses: docker/scout-action@v1 | |
with: | |
command: cves | |
ignore-unchanged: true | |
image: ${{ env.REGISTRY }}/${{ env.GITHUB_REPOSITORY }}:${{ github.run_id }} | |
only-fixed: true | |
only-severities: medium,high,critical | |
sarif-file: sarif.output.json | |
summary: true | |
- name: Upload SARIF to GitHub Security tab | |
uses: github/codeql-action/upload-sarif@v3 | |
with: | |
sarif_file: sarif.output.json | |
- if: github.event_name == 'pull_request' | |
name: Docker Scout - compare | |
uses: docker/scout-action@v1 | |
with: | |
command: compare | |
image: ${{ env.REGISTRY }}/${{ env.GITHUB_REPOSITORY }}:${{ github.run_id }} | |
to: ${{ env.REGISTRY }}/${{ env.GITHUB_REPOSITORY }}:latest | |
ignore-unchanged: true | |
exit-code: true | |
only-fixed: true | |
trivy: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
security-events: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Trivy scan | |
uses: aquasecurity/trivy-action@master | |
with: | |
format: template | |
scan-type: fs | |
template: "@/contrib/sarif.tpl" | |
output: trivy-results.sarif | |
severity: CRITICAL,HIGH,MEDIUM | |
- name: Upload to GitHub Security tab | |
uses: github/codeql-action/upload-sarif@v3 | |
with: | |
sarif_file: trivy-results.sarif | |
clippy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Cache | |
uses: actions/cache@v4 | |
with: | |
path: | | |
~/.cargo/registry | |
~/.cargo/git | |
target | |
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} | |
- name: Run rust-clippy | |
run: cargo clippy --fix --all -- -D warnings | |
fmt: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Cache | |
uses: actions/cache@v4 | |
with: | |
path: | | |
~/.cargo/registry | |
~/.cargo/git | |
target | |
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} | |
- name: Run rust-fmt | |
run: cargo fmt --all --check | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Cache | |
uses: actions/cache@v4 | |
with: | |
path: | | |
~/.cargo/registry | |
~/.cargo/git | |
target | |
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} | |
- name: Run build | |
run: cargo build --release --all-features |