Skip to content

chore: Bump github.com/aws/aws-sdk-go-v2/service/s3 (#4045) #14

chore: Bump github.com/aws/aws-sdk-go-v2/service/s3 (#4045)

chore: Bump github.com/aws/aws-sdk-go-v2/service/s3 (#4045) #14

name: release-please
on:
push:
branches: [main]
permissions:
contents: write
pull-requests: write
jobs:
release-please:
runs-on: ubuntu-latest
outputs:
module_evaluation_released: ${{ steps.release.outputs['modules/evaluation--release_created'] }}
module_evaluation_version: ${{ steps.release.outputs['modules/evaluation--version'] }}
module_core_released: ${{ steps.release.outputs['modules/core--release_created'] }}
module_core_version: ${{ steps.release.outputs['modules/core--version'] }}
steps:
- uses: googleapis/release-please-action@c2a5a2bd6a758a0937f1ddb1e8950609867ed15c # v4.3.0
id: release
with:
# See: https://github.com/googleapis/release-please
token: ${{ secrets.PERSONAL_GITHUB_TOKEN }}
config-file: .github/release-please/release-please-config.json
manifest-file: .github/release-please/.release-please-manifest.json
bump-module-evaluation:

Check failure on line 28 in .github/workflows/release-please.yml

View workflow run for this annotation

GitHub Actions / release-please

Invalid workflow file

The workflow is not valid. .github/workflows/release-please.yml (Line: 28, Col: 3): Error calling workflow 'thomaspoignant/go-feature-flag/.github/workflows/bump-modules.yml@337d31ce3c10b125d934eb1d9da80ab17912d71b'. The workflow is requesting 'actions: read', but is only allowed 'actions: none'.
if: ${{ needs.release-please.outputs.module_evaluation_released == 'true' }}
uses: ./.github/workflows/bump-modules.yml
needs: release-please
with:
modulePath: module/evaluation
version: ${{ needs.release-please.outputs.module_evaluation_version }}
bump-module-core:
if: ${{ needs.release-please.outputs.module_core_released == 'true' }}
uses: ./.github/workflows/bump-modules.yml
needs: release-please
with:
modulePath: module/core
version: ${{ needs.release-please.outputs.module_core_version }}