chore: bump github.com/aws/aws-sdk-go-v2/config from 1.28.0 to 1.28.1… #2539
This file contains 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
on: | |
push: | |
branches: | |
- main | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
name: release-please | |
jobs: | |
release-please: | |
runs-on: [ARM64, self-hosted, Linux] | |
steps: | |
# See https://docs.github.com/en/actions/security-guides/automatic-token-authentication#using-the-github_token-in-a-workflow | |
# For why we need to generate a token and not use the default | |
- name: Generate token | |
id: generate_token | |
uses: tibdex/github-app-token@v2 | |
with: | |
app_id: ${{ secrets.CZI_RELEASE_PLEASE_APP_ID }} | |
private_key: ${{ secrets.CZI_RELEASE_PLEASE_PK }} | |
- name: release please | |
uses: google-github-actions/release-please-action@v3 | |
id: release | |
with: | |
release-type: simple | |
command: manifest | |
token: ${{ steps.generate_token.outputs.token }} | |
monorepo-tags: true |