Skip to content

chore(deps): lock file maintenance #3099

chore(deps): lock file maintenance

chore(deps): lock file maintenance #3099

Workflow file for this run

name: CI
permissions: {}
on:
pull_request:
push:
branches:
- alpha
- beta
- main
- master
- renovate/**
jobs:
ci-optimization:
name: CI optimization
uses: dargmuesli/github-actions/.github/workflows/ci-optimization.yml@d6dda211541b8c8c8088762ff8f4a1c4d32f047c # 3.2.1
permissions:
pull-requests: read
release_semantic_dry:
needs: ci-optimization
if: needs.ci-optimization.outputs.continue == 'true'
name: Release (semantic, dry)
uses: dargmuesli/github-actions/.github/workflows/release-semantic.yml@d6dda211541b8c8c8088762ff8f4a1c4d32f047c # 3.2.1
permissions:
contents: write
id-token: write
secrets:
PERSONAL_ACCESS_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
with:
DRY_RUN: true
INSTALL_NODE_DEPENDENCIES: true
build:
name: Build
uses: dargmuesli/github-actions/.github/workflows/docker.yml@d6dda211541b8c8c8088762ff8f4a1c4d32f047c # 3.2.1
needs: release_semantic_dry
permissions:
packages: write
with:
TAG: ${{ needs.release_semantic_dry.outputs.new_release_version }}
release_semantic:
needs: build
name: Release (semantic)
uses: dargmuesli/github-actions/.github/workflows/release-semantic.yml@d6dda211541b8c8c8088762ff8f4a1c4d32f047c # 3.2.1
permissions:
contents: write
id-token: write
secrets:
PERSONAL_ACCESS_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
with:
INSTALL_NODE_DEPENDENCIES: true