Skip to content
Draft
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ branding:
icon: "chevron-right"
color: "gray-dark"
runs:
using: "node20"
using: "node22"
main: "index.js"
2 changes: 1 addition & 1 deletion lib/__tests__/lockVersion.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ describe("Check lockFile version", () => {

it("Should return undefined", () => {
const result = checkLockVersion({
lockfileVersion: 3,
lockfileVersion: 4,
});
expect(result).toBeUndefined();
});
Expand Down
2 changes: 1 addition & 1 deletion lib/checks/lockVersion.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const { FatalError } = require("../errors");

const expectedLockfileVersion = 3;
const expectedLockfileVersion = 4;

function checkLockVersion(lockFile) {
if (!lockFile) {
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@mobsuccess-devops/github-actions-packagejsonlint",
"version": "1.0.0",
"lockfileVersion": 3,
"lockfileVersion": 4,
"requires": true,
"packages": {
"": {
Expand Down
Loading