Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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 .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
steps:
- name: Post to a Slack channel
id: slack
uses: slackapi/slack-github-action@v1
uses: slackapi/slack-github-action@v3
with:
payload: |
{
Expand Down
28 changes: 28 additions & 0 deletions .github/workflows/vulnerability-updates.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Vulnerability update

on:
issues:
types: [opened, labeled, reopened]
workflow_dispatch:

concurrency:
group: vulnerability-update-${{ github.event_name }}-${{ github.event.issue.number || github.run_id }}
cancel-in-progress: true

jobs:
run:
if: |
github.event_name == 'workflow_dispatch' ||
(
github.event_name == 'issues' &&
contains(github.event.issue.labels.*.name, 'vulnerability')
)
uses: commercelayer/.github/.github/workflows/dependencies-update-pnpm.yaml@main
with:
reviewers: "malessani,gciotola,pfferrari,pviti"
use_milestone: false
run_test: true
run_build: true
run_check: true
issue_number: ${{ github.event_name == 'issues' && github.event.issue.number || '' }}
secrets: inherit
8 changes: 4 additions & 4 deletions biome.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://biomejs.dev/schemas/2.4.8/schema.json",
"$schema": "./node_modules/@biomejs/biome/configuration_schema.json",
"vcs": {
"enabled": true,
"clientKind": "git",
Expand Down Expand Up @@ -28,8 +28,8 @@
"noExplicitAny": "off"
},
"style": {
"useTemplate": "off"
}
"useTemplate": "off"
}
}
},
"javascript": {
Expand All @@ -46,4 +46,4 @@
}
}
}
}
}
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,27 +54,27 @@
"release": "pnpm upgrade && pnpm prepack && pnpm postpack && pnpm test"
},
"devDependencies": {
"@biomejs/biome": "2.4.8",
"@commercelayer/cli-dev": "^3.0.13",
"@oclif/plugin-help": "^6.2.40",
"@biomejs/biome": "^2.4.11",
"@commercelayer/cli-dev": "^3.1.1",
"@oclif/plugin-help": "^6.2.44",
"@oclif/test": "^3.2.15",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/chai": "^5.2.3",
"@types/mocha": "^10.0.10",
"@types/node": "^25.5.0",
"@types/node": "^25.6.0",
"chai": "^6.2.2",
"mocha": "^11.7.5",
"nyc": "^18.0.0",
"oclif": "^4.22.96",
"oclif": "^4.23.0",
"semantic-release": "^25.0.3",
"tsx": "^4.21.0",
"typescript": "^6.0.2"
},
"dependencies": {
"@commercelayer/cli-core": "^5.10.8",
"@commercelayer/cli-ux": "^1.1.0",
"@commercelayer/sdk": "^6.55.0",
"@commercelayer/cli-core": "^5.11.1",
"@commercelayer/cli-ux": "^1.2.1",
"@commercelayer/sdk": "^6.56.0",
"@oclif/core": "^3.27.0",
"cli-table3": "^0.6.5",
"open": "^8.4.2",
Expand Down
Loading
Loading