Skip to content

Commit 132406b

Browse files
update dependencies
1 parent 2c5adcf commit 132406b

File tree

3 files changed

+54
-55
lines changed

3 files changed

+54
-55
lines changed

.github/workflows/mutation.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,23 +25,23 @@ jobs:
2525
- name: Get last successful workflow run commit SHA
2626
id: last_success
2727
run: |
28-
echo "::set-output name=sha::$(gh run list --workflow mutation.yml --branch main --status success --limit 1 --json headSha -q '.[0].headSha')"
28+
echo "sha=$(gh run list --workflow mutation.yml --branch main --status success --limit 1 --json headSha -q '.[0].headSha')" >> $GITHUB_OUTPUT
2929
- name: Check for code changes
3030
id: set_changed
3131
run: |
3232
if [ -z "${{ steps.last_success.outputs.sha }}" ]; then
3333
echo "No previous successful run found. Assuming code changed."
34-
echo "::set-output name=code_changed::true"
34+
echo "code_changed=true" >> $GITHUB_OUTPUT
3535
exit 0
3636
fi
3737
git fetch origin main
3838
CHANGED_FILES=$(git diff --name-only ${{ steps.last_success.outputs.sha }} HEAD -- react/src)
3939
if [ -z "$CHANGED_FILES" ]; then
4040
echo "No code changes since last successful run."
41-
echo "::set-output name=code_changed::false"
41+
echo "code_changed=false" >> $GITHUB_OUTPUT
4242
else
4343
echo "Code changes detected."
44-
echo "::set-output name=code_changed::true"
44+
echo "code_changed=true" >> $GITHUB_OUTPUT
4545
fi
4646
4747
# Mutation testing

react/package-lock.json

Lines changed: 45 additions & 46 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

react/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
"history": "^5.3.0",
3535
"luxon": "^3.7.2",
3636
"react": "^19.2.0",
37-
"react-apexcharts": "^1.7.0",
37+
"react-apexcharts": "^1.8.0",
3838
"react-dom": "^19.2.0",
3939
"react-error-boundary": "^6.0.0",
4040
"react-router": "^7.9.4"
@@ -44,7 +44,7 @@
4444
"@babel/preset-react": "^7.27.1",
4545
"@eslint/compat": "^1.4.0",
4646
"@eslint/eslintrc": "^3.3.0",
47-
"@playwright/test": "^1.56.0",
47+
"@playwright/test": "^1.56.1",
4848
"@stryker-mutator/core": "^9.2.0",
4949
"@stryker-mutator/jest-runner": "^9.2.0",
5050
"@testing-library/dom": "^10.4.1",
@@ -55,7 +55,7 @@
5555
"babel-jest": "^30.2.0",
5656
"babel-preset-vite": "^1.1.3",
5757
"better-npm-audit": "^3.11.0",
58-
"eslint": "^9.37.0",
58+
"eslint": "^9.38.0",
5959
"eslint-config-prettier": "^10.1.8",
6060
"eslint-import-resolver-alias": "^1.1.2",
6161
"eslint-plugin-import": "^2.32.0",
@@ -72,8 +72,8 @@
7272
"jscpd": "^4.0.5",
7373
"prettier": "^3.6.2",
7474
"pretty-quick": "^4.2.2",
75-
"rollup-plugin-visualizer": "^6.0.4",
76-
"vite": "^7.1.9",
75+
"rollup-plugin-visualizer": "^6.0.5",
76+
"vite": "^7.1.10",
7777
"vite-plugin-svgr": "^4.5.0"
7878
},
7979
"eslintConfig": {

0 commit comments

Comments
 (0)