mirror of
https://github.com/Alfresco/acs-community-packaging.git
synced 2026-09-16 18:13:21 +00:00
Bumps the github-actions group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4` | `6` | | [Alfresco/alfresco-build-tools](https://github.com/alfresco/alfresco-build-tools) | `8.16.0` | `18.7.1` | | [docker/setup-qemu-action](https://github.com/docker/setup-qemu-action) | `3` | `4` | | [aws-actions/configure-aws-credentials](https://github.com/aws-actions/configure-aws-credentials) | `4` | `6` | | [actions/setup-python](https://github.com/actions/setup-python) | `5.4.0` | `6.2.0` | Updates `actions/checkout` from 4 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v6) Updates `Alfresco/alfresco-build-tools` from 8.16.0 to 18.7.1 - [Release notes](https://github.com/alfresco/alfresco-build-tools/releases) - [Commits](https://github.com/alfresco/alfresco-build-tools/compare/v8.16.0...v18.7.1) Updates `docker/setup-qemu-action` from 3 to 4 - [Release notes](https://github.com/docker/setup-qemu-action/releases) - [Commits](https://github.com/docker/setup-qemu-action/compare/v3...v4) Updates `aws-actions/configure-aws-credentials` from 4 to 6 - [Release notes](https://github.com/aws-actions/configure-aws-credentials/releases) - [Changelog](https://github.com/aws-actions/configure-aws-credentials/blob/main/CHANGELOG.md) - [Commits](https://github.com/aws-actions/configure-aws-credentials/compare/v4...v6) Updates `actions/setup-python` from 5.4.0 to 6.2.0 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/42375524e23c412d93fb67b49958b491fce71c38...a309ff8b426b58ec0e2a45f0f869d46889d02405) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/setup-python dependency-version: 6.2.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: Alfresco/alfresco-build-tools dependency-version: 15.7.1 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: aws-actions/configure-aws-credentials dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: docker/setup-qemu-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
43 lines
1.5 KiB
YAML
43 lines
1.5 KiB
YAML
name: Pre-Commit formatter
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- precommit/**
|
|
|
|
env:
|
|
JAVA_VERSION: "21"
|
|
MAVEN_PASSWORD: ${{ secrets.NEXUS_PASSWORD }}
|
|
MAVEN_USERNAME: ${{ secrets.NEXUS_USERNAME }}
|
|
|
|
jobs:
|
|
format-code:
|
|
name: "Reformat code"
|
|
runs-on: ubuntu-latest
|
|
if: contains(github.event.head_commit.message, '[reformat code]')
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
- uses: Alfresco/alfresco-build-tools/.github/actions/get-build-info@v18.7.1
|
|
- uses: Alfresco/alfresco-build-tools/.github/actions/free-hosted-runner-disk-space@v18.7.1
|
|
- uses: Alfresco/alfresco-build-tools/.github/actions/setup-java-build@v18.7.1
|
|
with:
|
|
java-version: ${{ env.JAVA_VERSION }}
|
|
- name: Set up Python ${{ inputs.python-version }}
|
|
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
|
|
with:
|
|
python-version: "3.9"
|
|
- uses: pre-commit/action@2c7b3805fd2a0fd8c1884dcaebf91fc102a13ecd # v3.0.1
|
|
continue-on-error: true
|
|
with:
|
|
extra_args: --all-files
|
|
- name: Update secrets baseline
|
|
run: pip install detect-secrets && detect-secrets scan --baseline .secrets.baseline
|
|
- uses: Alfresco/alfresco-build-tools/.github/actions/git-commit-changes@v18.7.1
|
|
with:
|
|
username: ${{ secrets.BOT_GITHUB_USERNAME }}
|
|
add-options: -u
|
|
commit-message: "Apply Pre-Commit code formatting"
|
|
skip-if-no-changes: true
|
|
- name: Push changes
|
|
run: git push
|