Build(deps): bump actions/checkout from 4.1.4 to 4.1.5 #430
Workflow file for this run
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: Run XML linting | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4.1.5 | |
- name: Run XML linting | |
run: | | |
sudo apt update -qq && sudo apt install -qq libxml2-utils | |
xmllint pom.xml | |
auto-merge: | |
runs-on: ubuntu-latest | |
needs: build | |
permissions: | |
pull-requests: write | |
contents: write | |
steps: | |
- name: Automatically merge dependabot upgrades | |
uses: fastify/github-action-merge-dependabot@v3.10.1 | |
with: | |
target: minor |