Bump vite from 5.4.11 to 6.0.5 in /src/frontend #932
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: "Automatically update dotnet lockfiles in dependabot PRs" | |
on: | |
workflow_dispatch: | |
pull_request_target: | |
env: | |
SOLUTION_PATH: "src/backend" | |
SOLUTION_NAME: "Backend.sln" | |
DOTNET_VERSION: "9.0.x" | |
jobs: | |
update-lockfiles: | |
runs-on: ubuntu-latest | |
if: github.event.pull_request.user.login == 'dependabot[bot]' | |
steps: | |
- name: Checkout ${{ github.head_ref }} | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.head_ref }} | |
token: ${{ secrets.WORKFLOW_TOKEN }} | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: ${{ env.DOTNET_VERSION }} | |
- name: Setup git user | |
run: | | |
git config user.name "${{ github.actor }}" | |
git config user.email "${{ github.actor }}@users.noreply.github.com" | |
- name: Update lockfiles | |
working-directory: ${{ env.SOLUTION_PATH }} | |
run: | | |
dotnet restore ${{ env.SOLUTION_NAME }} | |
git status | |
if output=$(git status --porcelain) && [ -z "$output" ]; then | |
# Working directory clean - do nothing | |
echo Working directory clean | |
exit 0 | |
else | |
# Uncommitted changes | |
echo Add and commit changes | |
git commit -a -m "Update lockfiles" | |
git push | |
fi |