chore(deps): bump @aws-sdk/credential-providers from 3.685.0 to 3.687.0 in /cdk #1083
Workflow file for this run
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
name: CI | |
on: | |
pull_request: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
jobs: | |
CI: | |
runs-on: ubuntu-22.04 | |
permissions: | |
contents: read | |
# These permissions are required by guardian/actions-riff-raff... | |
id-token: write # ...to exchange an OIDC JWT ID token for AWS credentials | |
pull-requests: write #...to comment on PRs | |
steps: | |
# Checkout the branch | |
- uses: actions/checkout@v4 | |
# Node is needed for CDK | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.nvmrc' | |
cache: npm | |
cache-dependency-path: 'cdk/package-lock.json' | |
# Java is needed for the Scala Play app | |
- uses: actions/setup-java@v4 | |
with: | |
java-version: '11' | |
distribution: 'corretto' | |
cache: 'sbt' | |
- uses: sbt/setup-sbt@v1 | |
# Build CDK and Play (in sequence) | |
- run: ./script/ci | |
# Upload our build artifacts to Riff-Raff (well, S3) | |
- uses: guardian/actions-riff-raff@v4 | |
with: | |
projectName: devx::cdk-playground | |
githubToken: ${{ secrets.GITHUB_TOKEN }} | |
roleArn: ${{ secrets.GU_RIFF_RAFF_ROLE_ARN }} | |
commentingStage: 'PROD' | |
configPath: cdk/cdk.out/riff-raff.yaml | |
contentDirectories: | | |
cdk.out: | |
- cdk/cdk.out | |
cdk-playground: | |
- dist/cdk-playground | |
cdk-playground-lambda: | |
- lambda/cdk-playground-lambda.zip | |
event-forwarder: | |
- cdk/dist/event-forwarder.zip |