mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-06 09:15:49 -05:00
f3279a4414
* Bump scalameta/scalafmt from 3.7.15 to v3.7.16 Bumps scalameta/scalafmt from 3.7.15 to v3.7.16. --- updated-dependencies: - dependency-name: scalameta/scalafmt dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> * add write permissions to workflow * Update scala config version to match version installed * fix indentation --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Zack Koppert <zkoppert@github.com> Co-authored-by: zkoppert <zkoppert@users.noreply.github.com>
39 lines
1.4 KiB
YAML
39 lines
1.4 KiB
YAML
---
|
|
|
|
name: Sync scala format version between Dockerfile and config file
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- 'Dockerfile'
|
|
|
|
permissions:
|
|
contents: write
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
repository: ${{ github.event.pull_request.head.repo.full_name }}
|
|
ref: ${{ github.event.pull_request.head.ref }}
|
|
|
|
- name: Sync the version if the dockerfile is getting updated
|
|
shell: bash
|
|
run: |
|
|
scala_version_from_dockerfile=$(grep 'scalameta/scalafmt' Dockerfile | awk -F: '{print $2}' | awk '{print $1}')
|
|
scala_version_from_dockerfile=${scala_version_from_dockerfile#v}
|
|
|
|
scala_version_from_config=$(grep 'version =' TEMPLATES/.scalafmt.conf | awk -F= '{print $2}' | tr -d '[:space:]')
|
|
|
|
echo "scala_version_from_dockerfile: $scala_version_from_dockerfile"
|
|
echo "scala_version_from_config: $scala_version_from_config"
|
|
|
|
if [ "$scala_version_from_dockerfile" != "$scala_version_from_config" ]; then echo "versions differ"; sed -i "s/\(version =\).*/\1 ${scala_version_from_dockerfile}/g" TEMPLATES/.scalafmt.conf; fi
|
|
- uses: EndBug/add-and-commit@v9 # You can change this to use a specific version.
|
|
with:
|
|
add: 'TEMPLATES/.scalafmt.conf'
|
|
fetch: false
|
|
message: 'Update scala config version to match version installed'
|