fix dependabot alerts (#5207) #27
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: Scala Style Check | |
# Cancel previous runs in the PR when you push new commits | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.run_id }} | |
cancel-in-progress: true | |
permissions: | |
contents: read | |
on: | |
push: | |
branches: [ "main" ] | |
paths: | |
- 'scala/**' | |
- '.github/workflows/scala-style-check.yml' | |
pull_request: | |
branches: [ "main" ] | |
paths: | |
- 'scala/**' | |
- '.github/workflows/scala-style-check.yml' | |
# schedule: | |
# - cron: '0 15 * * *' | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: [self-hosted, Gondolin, ubuntu-20.04-lts] | |
steps: | |
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # actions/checkout@v3 | |
- name: Set up JDK 8 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '8' | |
distribution: 'temurin' | |
#server-id: github # Value of the distributionManagement/repository/id field of the pom.xml | |
settings-path: ${{ github.workspace }} # location for the settings.xml file | |
#pls use cache only on github owned runners | |
#- uses: actions/cache@v2 | |
#with: | |
#path: ~/.m2/repository | |
#key: maven-${{ hashFiles('**/pom.xml') }} | |
#restore-keys: maven- | |
- name: Set up Maven | |
uses: stCarolas/setup-maven@v4.4 | |
with: | |
maven-version: 3.8.2 | |
- name: Set up Maven Settings | |
uses: s4u/maven-settings-action@v2.6.0 | |
with: | |
sonatypeSnapshots: true | |
apacheSnapshots: true | |
servers: | | |
[{ | |
"id": "central", | |
"configuration": { | |
"httpConfiguration": { | |
"all": { | |
"connectionTimeout": "3600000", | |
"readTimeout": "3600000" | |
} | |
} | |
} | |
}] | |
mirrors: '[{"id": "ardaNexus", "name": "ardaNexus", "mirrorOf": "*", "url": "${NEXUS_URL}" }]' | |
- name: Run tests | |
run: | | |
cd scala | |
mvn clean verify -DskipTests -U | |
create-workflow-badge: | |
if: github.event.pull_request == '' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # actions/checkout@v3 | |
- name: create workflow badge | |
if: ${{ always() }} | |
uses: ./.github/actions/create-job-status-badge | |
with: | |
secret: ${{ secrets.GIST_SECRET }} | |
gist-id: 689bf54fe32e4758ed528e4168c724bc | |
file-name: scala-style-check.json | |
type: workflow |