Skip to content

Commit 3a1ced5

Browse files
committed
update deps
1 parent 531d756 commit 3a1ced5

13 files changed

Lines changed: 5825 additions & 9279 deletions

File tree

Makefile

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
setup:
2-
docker pull hexletprojects/hexlet-project-source-ci
2+
docker pull hexletprojects/hexlet-project-source-ci:latest
33
docker pull ubuntu:latest
44
make install
55

@@ -13,8 +13,14 @@ test:
1313
ACTIONS_RUNNER_DEBUG=1 npx jest
1414

1515
lint:
16-
npx eslint .
16+
npx @biomejs/biome check
17+
18+
lint-fix:
19+
npx @biomejs/biome check --fix
1720

1821
# TODO: release authomatically after build
1922
release:
2023
git push -f origin master:release
24+
25+
update-deps:
26+
npx ncu -u

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ inputs:
1515
default: "/var/tmp"
1616

1717
runs:
18-
using: 'node20'
18+
using: 'node24'
1919
main: 'dist/run-tests/index.js'
2020
post: 'dist/run-post-actions/index.js'

bin/run-post-actions.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
// @ts-check
44

5-
import core from '@actions/core';
5+
import * as core from '@actions/core';
66
import cleanStack from 'clean-stack';
77

88
import { runPostActions } from '../src/index.js';

bin/run-tests.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// @ts-check
44

55
import path from 'path';
6-
import core from '@actions/core';
6+
import * as core from '@actions/core';
77
import cleanStack from 'clean-stack';
88

99
import { runTests } from '../src/index.js';

dist/run-post-actions/index.js

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

dist/run-post-actions/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/run-post-actions/sourcemap-register.cjs

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

dist/run-tests/index.js

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

dist/run-tests/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/run-tests/sourcemap-register.cjs

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)