chore(package): update dependency ansible to v14 (#759) #809
This file contains hidden or 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: Release Please | |
| on: | |
| push: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| concurrency: | |
| group: release-please-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: write | |
| jobs: | |
| release-please: | |
| runs-on: ubuntu-latest | |
| outputs: | |
| components_json: ${{ steps.releases.outputs.components_json }} | |
| steps: | |
| - uses: actions/create-github-app-token@bcd2ba49218906704ab6c1aa796996da409d3eb1 # v3.2.0 | |
| id: app-token | |
| with: | |
| app-id: ${{ vars.FORMWORK_REMOVER_APP_ID }} | |
| private-key: ${{ secrets.FORMWORK_REMOVER_PRIVATE_KEY }} | |
| - uses: googleapis/release-please-action@45996ed1f6d02564a971a2fa1b5860e934307cf7 # v5 | |
| id: release-please | |
| with: | |
| token: ${{ steps.app-token.outputs.token }} | |
| config-file: release-please-config.json | |
| manifest-file: .release-please-manifest.json | |
| - name: Checkout Repo | |
| uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 | |
| - name: Gather Release Outputs | |
| env: | |
| OUTPUTS: ${{ toJson(steps.release-please.outputs) }} | |
| id: releases | |
| run: sh .github/workflows/release-please-output-helper.sh | |
| build-release: | |
| runs-on: ubuntu-latest | |
| needs: release-please | |
| if: ${{ needs.release-please.outputs.components_json != '[]' }} | |
| strategy: | |
| matrix: | |
| component: ${{ fromJson(needs.release-please.outputs.components_json) }} | |
| steps: | |
| - name: Checkout Repo | |
| uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 | |
| - name: Test and Build Component | |
| uses: devcontainers/ci@513af61f4de4f75d37e4438f184ba4358f0fc1ca # v0.3.1900000450 | |
| with: | |
| cacheFrom: ghcr.io/marinatedconcrete/config-devcontainer | |
| env: | | |
| CI=1 | |
| GITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }} | |
| imageName: ghcr.io/marinatedconcrete/config-devcontainer | |
| push: never | |
| runCmd: | | |
| just release-please-build ${{ matrix.component.project }} /tmp/${{ matrix.component.project }}.yml | |
| gh release upload ${{ matrix.component.tag }} /tmp/${{ matrix.component.project }}.yml |