Bump vite from 7.1.7 to 7.1.11 in /cmd/kueueviz/frontend #4542
Workflow file for this run
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
# This workflow syncs dependency versions for Dependabot PRs | |
name: Dependabot Version Sync | |
on: | |
pull_request_target: | |
branches: [ main ] | |
jobs: | |
run-sync-hugo-version: | |
if: ${{ contains(github.event.pull_request.labels.*.name, 'ok-to-test') && github.actor == 'dependabot[bot]' }} | |
runs-on: ubuntu-latest | |
# Permission required to edit a PR | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v5 | |
with: | |
ref: ${{github.head_ref}} | |
- name: Set git user from last commit | |
run: | | |
git config user.name "$(git log -1 --pretty=%an)" | |
git config user.email "$(git log -1 --pretty=%ae)" | |
- name: Sync hugo version | |
if: ${{ contains(github.event.pull_request.title, 'hugo') }} | |
run: | | |
make sync-hugo-version | |
if ! git diff --exit-code; then | |
git add . | |
git commit -m "Sync hugo version" | |
git push | |
else | |
echo "No changes to commit" | |
fi | |
- name: Sync controller-tools version | |
if: ${{ contains(github.event.pull_request.title, 'sigs.k8s.io/controller-tools') }} | |
run: | | |
make manifests update-helm | |
if ! git diff --exit-code; then | |
git add . | |
git commit -m "Sync controller-tools version" | |
git push | |
else | |
echo "No changes to commit" | |
fi |