Skip to content

chore(deps): Bump com.diffplug.spotless from 6.23.3 to 6.24.0 #119

chore(deps): Bump com.diffplug.spotless from 6.23.3 to 6.24.0

chore(deps): Bump com.diffplug.spotless from 6.23.3 to 6.24.0 #119

Workflow file for this run

name: "CI"
on:
## Releases
release:
types:
- created
## CI
push:
branches:
- main
permissions:
actions: read
contents: read
jobs:
## Build Library
build-library:
name: "Build"
uses: ./.github/workflows/module.build.yml
secrets: inherit
permissions:
actions: read
contents: write
id-token: write
checks: write
pull-requests: read
with:
graph: generate-and-submit
signing: true
provenance: true
## Checks: CodeQL
checks-codeql:
name: "Checks"
uses: ./.github/workflows/module.codeql.yml
secrets: inherit
permissions:
actions: read
contents: read
security-events: write
with: {}
## Checks CodeQL
checks-detekt:
name: "Checks"
uses: ./.github/workflows/module.detekt.yml
secrets: inherit
permissions:
actions: read
contents: read
security-events: write
with: {}
## Stage: Check Scorecard
checks-scorecard:
name: "Checks"
uses: ./.github/workflows/module.scorecards.yml
secrets: inherit
permissions:
security-events: write
id-token: write
contents: read
actions: read
with: {}
## Deploy: Snapshots
publish:
name: "Publish"
uses: ./.github/workflows/module.publish.yml
needs: ['build-library', 'checks-codeql', 'checks-detekt', 'checks-scorecard']
secrets:
BUILDLESS_APIKEY: ${{ secrets.BUILDLESS_APIKEY }}
PUBLISH_TOKEN: ${{ secrets.PUBLISH_TOKEN }}
GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }}
permissions:
id-token: write
contents: read
packages: write
with:
snapshot: true
live: ${{ github.event_name == 'release' }}