chore(deps): update dependency linkerd/linkerd2 to v2.14.2 #21
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
# https://docs.renovatebot.com/user-stories/maintaining-aur-packages-with-renovate/ | |
# Thanks Jamie! | |
name: aur | |
on: | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
branches: | |
- main | |
jobs: | |
updpkgsums: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
with: | |
fetch-depth: 0 | |
ref: ${{ github.ref }} | |
- name: Find updated package | |
run: | | |
#!/usr/bin/env bash | |
set -euxo pipefail | |
echo "pkgbuild=$(git diff --name-only origin/main origin/${GITHUB_HEAD_REF} "*PKGBUILD" | head -1 | xargs dirname)" >> $GITHUB_ENV | |
- name: Validate package | |
if: ${{ env.pkgbuild != '' }} | |
uses: ./.github/actions/aur | |
with: | |
action: 'updpkgsums' | |
pkgname: ${{ env.pkgbuild }} | |
- name: Commit | |
if: ${{ env.pkgbuild != '' }} | |
uses: stefanzweifel/git-auto-commit-action@3ea6ae190baf489ba007f7c92608f33ce20ef04a # v4.16.0 | |
with: | |
file_pattern: '*/PKGBUILD */.SRCINFO' |