Skip to content

Commit

Permalink
⬆️ Bump the npm-production group across 1 directory with 3 updates
Browse files Browse the repository at this point in the history
Bumps the npm-production group with 3 updates in the / directory: [@actions/artifact](https://github.com/actions/toolkit/tree/HEAD/packages/artifact), [@octokit/plugin-paginate-rest](https://github.com/octokit/plugin-paginate-rest.js) and [@octokit/webhooks](https://github.com/octokit/webhooks.js).

Updates `@actions/artifact` from 2.1.7 to 2.1.8
- [Changelog](https://github.com/actions/toolkit/blob/main/packages/artifact/RELEASES.md)
- [Commits](https://github.com/actions/toolkit/commits/HEAD/packages/artifact)

Updates `@octokit/plugin-paginate-rest` from 11.3.0 to 11.3.3
- [Release notes](https://github.com/octokit/plugin-paginate-rest.js/releases)
- [Commits](octokit/plugin-paginate-rest.js@v11.3.0...v11.3.3)

Updates `@octokit/webhooks` from 13.2.7 to 13.2.8
- [Release notes](https://github.com/octokit/webhooks.js/releases)
- [Commits](octokit/webhooks.js@v13.2.7...v13.2.8)

---
updated-dependencies:
- dependency-name: "@actions/artifact"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-production
- dependency-name: "@octokit/plugin-paginate-rest"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-production
- dependency-name: "@octokit/webhooks"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-production
...

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] authored and tiulpin committed Jul 15, 2024
1 parent aa51170 commit 0661dd3
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 33 deletions.
42 changes: 14 additions & 28 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 4 additions & 3 deletions scan/dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -93339,8 +93339,9 @@ var require_config = __commonJS({
const ghUrl = new URL(process.env["GITHUB_SERVER_URL"] || "https://github.com");
const hostname = ghUrl.hostname.trimEnd().toUpperCase();
const isGitHubHost = hostname === "GITHUB.COM";
const isGheHost = hostname.endsWith(".GHE.COM") || hostname.endsWith(".GHE.LOCALHOST");
return !isGitHubHost && !isGheHost;
const isGheHost = hostname.endsWith(".GHE.COM");
const isLocalHost = hostname.endsWith(".LOCALHOST");
return !isGitHubHost && !isGheHost && !isLocalHost;
}
__name(isGhes, "isGhes");
exports2.isGhes = isGhes;
Expand Down Expand Up @@ -101552,7 +101553,7 @@ var require_package = __commonJS({
"../node_modules/@actions/artifact/package.json"(exports2, module2) {
module2.exports = {
name: "@actions/artifact",
version: "2.1.7",
version: "2.1.8",
preview: true,
description: "Actions artifact lib",
keywords: [
Expand Down
2 changes: 1 addition & 1 deletion scan/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"url": "git+https://github.com/JetBrains/qodana-action.git"
},
"dependencies": {
"@actions/artifact": "^2.1.7",
"@actions/artifact": "^2.1.8",
"@actions/cache": "^3.2.4",
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.0",
Expand Down
2 changes: 1 addition & 1 deletion vsts/vss-extension.dev.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifestVersion": 1,
"id": "qodana-dev",
"name": "Qodana (Dev)",
"version": "2024.1.111",
"version": "2024.1.113",
"publisher": "JetBrains",
"targets": [
{
Expand Down

0 comments on commit 0661dd3

Please sign in to comment.