From 8fc168aecd703636a0dd2b04c83e58ebffd22d9d Mon Sep 17 00:00:00 2001 From: Vitali Bahdzevich Date: Tue, 5 May 2026 21:58:10 +0300 Subject: [PATCH 1/2] 0.2.0 --- package-lock.json | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index 2330c15..72bf9cf 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "gitkey", - "version": "1.0.0", + "version": "0.2.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "gitkey", - "version": "1.0.0", + "version": "0.2.0", "license": "ISC", "dependencies": { "@inquirer/prompts": "^8.4.2", diff --git a/package.json b/package.json index cd577ea..8fb83b4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@bagdevich/gitkey", - "version": "0.1.0", + "version": "0.2.0", "description": "CLI for managing Git SSH profiles, keys and repo remotes", "type": "module", "bin": { From 011787b349d0d24a8e9529a3e6d200d3de09eef1 Mon Sep 17 00:00:00 2001 From: Vitali Bahdzevich Date: Tue, 5 May 2026 22:04:09 +0300 Subject: [PATCH 2/2] ci: update npm publish workflow for trusted publishing --- .github/workflows/publish.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index c0fcfdd..b6c02b0 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -19,10 +19,13 @@ jobs: - name: Set up Node.js uses: actions/setup-node@v4 with: - node-version: 20 + node-version: 22 cache: npm registry-url: https://registry.npmjs.org + - name: Update npm + run: npm install -g npm@latest + - name: Install dependencies run: npm ci