Skip to content
Open
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/check-dist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2

- name: Install node
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
with:
node-version: 'lts/*'

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ jobs:

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@89a39a4e59826350b863aa6b6252a07ad50cf83e # v4.32.4
uses: github/codeql-action/init@c10b8064de6f491fea524254123dbe5e09572f13 # v4.35.1
with:
languages: javascript,

- name: Autobuild
uses: github/codeql-action/autobuild@89a39a4e59826350b863aa6b6252a07ad50cf83e # v4.32.4
uses: github/codeql-action/autobuild@c10b8064de6f491fea524254123dbe5e09572f13 # v4.35.1

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@89a39a4e59826350b863aa6b6252a07ad50cf83e # v4.32.4
uses: github/codeql-action/analyze@c10b8064de6f491fea524254123dbe5e09572f13 # v4.35.1
22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,27 +26,27 @@
"author": "",
"license": "MIT",
"dependencies": {
"@actions/core": "2.0.3",
"@datadog/datadog-ci": "5.9.0",
"@datadog/datadog-ci-base": "5.9.0",
"axios": "^1.12.0"
"@actions/core": "3.0.0",
"@datadog/datadog-ci": "5.11.0",
"@datadog/datadog-ci-base": "5.11.0",
Comment on lines +30 to +31
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Rebuild and commit dist after runtime dependency bump

This commit updates runtime packages (@datadog/datadog-ci/@datadog/datadog-ci-base) in package.json, but it does not update the bundled artifact that the action actually executes (runs.main: dist/index.js in action.yml). In this revision, dist/index.js still embeds @datadog/datadog-ci-base version 5.9.0, so users will continue running the old code despite the dependency bump, and the check-dist workflow’s rebuild/diff step is expected to detect uncommitted dist/ changes. Please regenerate and commit dist/ with the new dependency set.

Useful? React with 👍 / 👎.

"axios": "^1.14.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@types/jest": "30.0.0",
"@types/node": "25.4.0",
"@types/node": "25.5.2",
"@vercel/ncc": "^0.38.4",
"eslint": "9.39.4",
"eslint": "10.2.0",
"eslint-plugin-github": "^6.0.0",
"eslint-plugin-jest": "^29.15.0",
"eslint-plugin-jest": "^29.15.1",
"eslint-plugin-prettier": "5.5.5",
"globals": "^17.4.0",
"jest": "30.2.0",
"jest": "30.3.0",
"js-yaml": "^4.1.1",
"prettier": "3.8.1",
"ts-jest": "29.4.6",
"typescript": "5.9.3",
"typescript-eslint": "8.57.0"
"ts-jest": "29.4.9",
"typescript": "6.0.2",
"typescript-eslint": "8.58.0"
},
"resolutions": {
"simple-git": "3.33.0"
Expand Down
Loading
Loading