Skip to content

Commit 1793672

Browse files
committed
bump project version to 0.1.4
1 parent 025469d commit 1793672

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ automating the necessary API calls.
2222
## How it works?
2323

2424
- Fetches project details from GitLab.
25-
- Identifies dependency files (`go.mod`, `composer.json`) in the repository.
25+
- Identifies dependency files (`go.mod`, `composer.json`, `package-lock.json`) in the repository.
2626
- Extracts dependencies from these files.
2727
- Configures CI job token scopes to whitelist the source project in dependency projects.
2828

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@shini4i/gitlab-token-scope-adjuster",
3-
"version": "0.1.3",
3+
"version": "0.1.4",
44
"description": "CLI tool for automatically adjusting CI_JOB_TOKEN scope based on project dependencies in GitLab.",
55
"scripts": {
66
"build": "tsc",

src/cli.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import {adjustTokenScope} from './scripts/adjust-token-scope';
66
const program = new Command();
77

88
program
9-
.version('0.1.3')
9+
.version('0.1.4')
1010
.description('CLI tool for whitelisting CI_JOB_TOKEN in dependencies projects');
1111

1212
program

0 commit comments

Comments
 (0)