From 4a69a68691ada2b4b5a8729f9bc811c1b035e946 Mon Sep 17 00:00:00 2001 From: d-kimsuon Date: Sun, 19 Oct 2025 18:34:38 +0900 Subject: [PATCH] chore: update dependency update command in GitHub Actions workflow - Modified the dependency update command in the GitHub Actions workflow to remove the `--no-frozen-lockfile` option for improved flexibility during updates. --- .github/workflows/update-dependencies.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/update-dependencies.yml b/.github/workflows/update-dependencies.yml index 0ef242a..efa76f0 100644 --- a/.github/workflows/update-dependencies.yml +++ b/.github/workflows/update-dependencies.yml @@ -27,7 +27,7 @@ jobs: run: pnpm dlx corepack use pnpm@latest - name: Update dependencies - run: pnpm up --latest --no-frozen-lockfile + run: pnpm up --latest - name: Create Pull Request uses: peter-evans/create-pull-request@4320041ed380b20e97d388d56a7fb4f9b8c20e79 # v7.0.0