Skip to content

chore(deps): lock file maintenance #624

chore(deps): lock file maintenance

chore(deps): lock file maintenance #624

Workflow file for this run

name: Workflow
on:
push:
branches: [ main ]
pull_request: { }
jobs:
required-meta:
permissions:
contents: read
checks: write
pull-requests: write
uses: BlindfoldedSurgery/actions-meta/.github/workflows/required.yml@v1
lint:
uses: BlindfoldedSurgery/actions-python/.github/workflows/lint.yml@v3
with:
build-tool: uv
python-version: '3.13'
test:
uses: BlindfoldedSurgery/actions-python/.github/workflows/test.yml@v3
with:
build-tool: uv
python-version: '3.13'
build-container-image:
needs:
- lint
- test
uses: preparingforexams/actions-container/.github/workflows/build-image-kaniko.yml@v5
with:
runner-name-build: warp-ubuntu-2404-arm64-2x
push-image: ${{ github.ref_name == github.event.repository.default_branch }}
deploy:
runs-on: ubuntu-24.04
if: github.ref_name == github.event.repository.default_branch
permissions:
contents: write
needs:
- build-container-image
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- run: git push origin main:release
clean:
concurrency: cleanup
needs: [ deploy ]
uses: preparingforexams/actions-container/.github/workflows/clean.yml@v5