fix(deps): update all non-major dependencies (#98) #52
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: Build & Release | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
- next | |
paths: | |
- '**/src/**' | |
- '**/pom.xml' | |
- 'pom.xml' | |
concurrency: | |
group: ci-main | |
permissions: | |
# used by cycjimmy/semantic-release-action | |
contents: write | |
issues: write | |
pull-requests: write | |
packages: write | |
# used by aws-actions/configure-aws-credentials | |
id-token: write | |
jobs: | |
build: | |
name: Build & Release | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '11' | |
distribution: 'temurin' | |
cache: 'maven' | |
- name: Setup Node 18 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: 'yarn' | |
cache-dependency-path: integration-tests/infrastructure/yarn.lock | |
- name: Setup Terraform | |
uses: hashicorp/setup-terraform@v2 | |
with: | |
terraform_version: 1.4.6 | |
terraform_wrapper: false | |
- name: Setup AWS Credentials for Infrastructure | |
uses: aws-actions/configure-aws-credentials@v2 | |
with: | |
aws-region: eu-central-1 | |
role-to-assume: arn:aws:iam::956243129466:role/github-deployer | |
- name: Synth Infrastructure for Integration Tests | |
working-directory: integration-tests/infrastructure | |
run: | | |
yarn install --immutable --immutable-cache --check-cache | |
yarn run synth | |
- name: Apply Infrastructure for Integration Tests | |
id: apply-infrastructure | |
working-directory: integration-tests/infrastructure/cdktf.out/stacks/feign-aws-sigv4-integration-tests | |
run: | | |
terraform init | |
terraform apply -auto-approve | |
echo "integration-test-role-arn=$(terraform output -raw integration-test-role-arn)" >> $GITHUB_OUTPUT | |
echo "api-gateway-url=$(terraform output -raw api-gateway-url)" >> $GITHUB_OUTPUT | |
- name: Setup AWS Credentials for Integration Tests | |
uses: aws-actions/configure-aws-credentials@v2 | |
with: | |
aws-region: eu-central-1 | |
role-to-assume: ${{ steps.apply-infrastructure.outputs.integration-test-role-arn }} | |
- name: Run Tests | |
id: run-tests | |
run: | | |
mvn -B -ntp clean install failsafe:integration-test failsafe:verify -DapiGatewayUrl=${{ steps.apply-infrastructure.outputs.api-gateway-url }} | |
- name: Setup AWS Credentials for Infrastructure | |
if: always() | |
uses: aws-actions/configure-aws-credentials@v2 | |
with: | |
aws-region: eu-central-1 | |
role-to-assume: arn:aws:iam::956243129466:role/github-deployer | |
- name: Destroy Infrastructure for Integration Tests | |
if: always() | |
working-directory: integration-tests/infrastructure/cdktf.out/stacks/feign-aws-sigv4-integration-tests | |
run: | | |
terraform destroy -auto-approve | |
- name: Create new release | |
if: steps.run-tests.outcome == 'success' | |
uses: cycjimmy/semantic-release-action@v3 | |
with: | |
extra_plugins: | | |
@semantic-release/git | |
@semantic-release/exec | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |