Skip to content
This repository has been archived by the owner on Feb 1, 2024. It is now read-only.

chore(deps): bump io.awspring.cloud:spring-cloud-aws-dependencies from 3.0.1 to 3.1.0 #249

chore(deps): bump io.awspring.cloud:spring-cloud-aws-dependencies from 3.0.1 to 3.1.0

chore(deps): bump io.awspring.cloud:spring-cloud-aws-dependencies from 3.0.1 to 3.1.0 #249

Workflow file for this run

name: CI
on:
push:
branches:
- main
paths:
- src/**
- pom.xml
- .github/workflows/ci.yml
pull_request:
paths:
- src/**
- pom.xml
- .github/workflows/ci.yml
jobs:
verify:
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: Cache SonarCloud packages
uses: actions/[email protected]
with:
path: ~/.sonar/cache
key: ${{ runner.os }}-sonar
- name: Set up JDK
uses: actions/setup-java@v3
with:
distribution: adopt
java-version: 17
- name: Cache Maven packages
uses: actions/[email protected]
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Build with Maven
run: mvn -B -ntp verify
- name: Analyze using Sonar
if: github.event_name != 'pull_request' || (github.event.pull_request.head.repo.full_name == github.repository && github.actor != 'dependabot[bot]')
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
run: mvn -B -ntp org.sonarsource.scanner.maven:sonar-maven-plugin:sonar