chore(deps): update dependency gradle to v8.10.1 #36
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: Whiskers check | |
on: | |
pull_request: | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Extract whiskers version from tera file | |
run: | | |
WHISKERS_VERSION=$(sed -nr 's/^\s*version: (.+)/\1/p' fleet.tera) | |
if [ -z "${WHISKERS_VERSION}" ]; then | |
echo "Failed to extract whiskers version from 'fleet.tera'" | |
exit 1 | |
fi | |
echo "Detected whiskers version is '$WHISKERS_VERSION'" | |
echo "WHISKERS_VERSION=v${WHISKERS_VERSION}" >> $GITHUB_ENV | |
- name: Fetch whiskers ${{ env.WHISKERS_VERSION }} | |
run: | | |
curl -LsSf "https://github.com/catppuccin/whiskers/releases/download/${WHISKERS_VERSION}/whiskers-x86_64-unknown-linux-gnu" > whiskers | |
chmod +x whiskers | |
- name: Check themes are updated | |
run: | | |
./whiskers --check themes/ fleet.tera |