Bump ch.qos.logback:logback-core from 1.5.21 to 1.5.25 #127
This file contains hidden or 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
| # Add changesets for Dependabot PRs | |
| name: Dependabot Changesets | |
| on: | |
| pull_request: | |
| # Trigger on creation (opened) and updates (synchronize) | |
| types: [opened, synchronize, reopened] | |
| # Do not trigger if ONLY files in .changesets are changed | |
| paths-ignore: | |
| - '.changesets/**' | |
| permissions: | |
| contents: read | |
| jobs: | |
| generate-changeset: | |
| runs-on: ubuntu-latest | |
| if: github.event.pull_request.user.login == 'dependabot[bot]' && github.repository == 'FortnoxAB/changesets-java' | |
| permissions: | |
| pull-requests: read | |
| contents: write | |
| steps: | |
| - name: Harden the runner (Audit all outbound calls) | |
| uses: step-security/harden-runner@20cf305ff2072d973412fa9b1e3a4f227bda3c76 # v2.14.0 | |
| with: | |
| egress-policy: audit | |
| - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| with: | |
| persist-credentials: true # Needed for pushing new changesets | |
| - name: Set up JDK 17 | |
| uses: actions/setup-java@f2beeb24e141e01a676f977032f5a29d81c9e27e # v5.1.0 | |
| with: | |
| java-version: '17' | |
| distribution: 'temurin' | |
| cache: maven | |
| - uses: FortnoxAB/changesets-java-dependabot-action@4084a9bd82d16ec639f15a28fe5eb30696ac571d # main | |
| - name: Validate | |
| shell: bash | |
| run: | | |
| ls -l .changeset | |
| git status |