Skip to content

Bump org.springframework:spring-beans in /flux-spring #61

Bump org.springframework:spring-beans in /flux-spring

Bump org.springframework:spring-beans in /flux-spring #61

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: Build
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches: [ main ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
env:
CODEBUILD_EXECUTOR_IAM_ROLE: "arn:aws:iam::500609504579:role/github-build-runner"
CODEBUILD_EXECUTOR_SESSION_NAME: "github-build-runner"
CODEBUILD_PROJECT_NAME: "build-only"
AWS_REGION: "us-west-2"
permissions:
id-token: write
contents: read
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
environment: build-runner
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Checkout
uses: actions/checkout@v3
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v1
with:
role-to-assume: ${{ env.CODEBUILD_EXECUTOR_IAM_ROLE }}
role-session-name: ${{ env.CODEBUILD_EXECUTOR_SESSION_NAME }}
aws-region: ${{ env.AWS_REGION }}
- name: Run CodeBuild
uses: aws-actions/aws-codebuild-run-build@v1.0.3
with:
project-name: ${{ env.CODEBUILD_PROJECT_NAME }}