Skip to content

chore(deps): update all non-major dependencies #3059

chore(deps): update all non-major dependencies

chore(deps): update all non-major dependencies #3059

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@2e609b27f8b3a698ba389d86518c92bca3a5d492 # 3.1.0
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@2e609b27f8b3a698ba389d86518c92bca3a5d492 # 3.1.0
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@2e609b27f8b3a698ba389d86518c92bca3a5d492 # 3.1.0
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@2e609b27f8b3a698ba389d86518c92bca3a5d492 # 3.1.0
permissions:
contents: write
id-token: write
secrets:
PERSONAL_ACCESS_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
with:
INSTALL_NODE_DEPENDENCIES: true