From 77f6f8811cafe44bb87a1a71558daff20840d059 Mon Sep 17 00:00:00 2001 From: Jeremy Bunting <187095+qbunt@users.noreply.github.com> Date: Sun, 9 Jun 2024 20:55:12 -0400 Subject: [PATCH 1/2] CI and github workflow update --- .github/workflows/coverage.yml | 12 ++++++------ .github/workflows/nodejs.yml | 16 ++++++++-------- .github/workflows/release.yml | 4 ++-- package.json | 2 +- 4 files changed, 17 insertions(+), 17 deletions(-) diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index c4117fb..9f47526 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -5,24 +5,24 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [14.x, 16.x, 18.x] + node-version: [18.x, 20.x, 22.x] steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v4 with: fetch-depth: 2 - name: Set up Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} - - uses: pnpm/action-setup@v2.0.1 + - uses: pnpm/action-setup@v4 name: Install pnpm id: pnpm-install with: - version: 7 + version: 8 run_install: false - name: Get pnpm store directory @@ -30,7 +30,7 @@ jobs: run: | echo "::set-output name=pnpm_cache_dir::$(pnpm store path)" - - uses: actions/cache@v3 + - uses: actions/cache@v4 name: Setup pnpm cache with: path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }} diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 8f7c14c..8c6506f 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -1,27 +1,27 @@ name: Node.js CI on: push: - branches: [master] + branches: [main] pull_request: - branches: [master] + branches: [main] jobs: build: runs-on: ubuntu-latest strategy: matrix: - node-version: [14.x, 16.x, 18.x] + node-version: [18.x, 20.x, 22.x] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} - - uses: pnpm/action-setup@v2.0.1 + - uses: pnpm/action-setup@v4 name: Install pnpm id: pnpm-install with: - version: 7 + version: 8 run_install: false - name: Get pnpm store directory @@ -29,7 +29,7 @@ jobs: run: | echo "::set-output name=pnpm_cache_dir::$(pnpm store path)" - - uses: actions/cache@v3 + - uses: actions/cache@v4 name: Setup pnpm cache with: path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4c94a5e..495d8e7 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,7 +13,7 @@ jobs: node-version: '18.17.1' registry-url: 'https://registry.npmjs.org' - - uses: pnpm/action-setup@v2 + - uses: pnpm/action-setup@v4 name: Install pnpm id: pnpm-install with: @@ -25,7 +25,7 @@ jobs: run: | echo "::set-output name=pnpm_cache_dir::$(pnpm store path)" - - uses: actions/cache@v3 + - uses: actions/cache@v4 name: Setup pnpm cache with: path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }} diff --git a/package.json b/package.json index 13ea0c0..a6f5133 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "romans", - "version": "2.0.9", + "version": "2.0.10", "description": "A small, no-dependency lib for converting to and from roman numerals", "main": "romans.js", "types": "romans.d.ts", From c2be1fc56ffedf616081b8ed276f20d37a3b27c0 Mon Sep 17 00:00:00 2001 From: Jeremy Bunting <187095+qbunt@users.noreply.github.com> Date: Sun, 9 Jun 2024 20:57:46 -0400 Subject: [PATCH 2/2] update to version --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index a6f5133..aecefa9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "romans", - "version": "2.0.10", + "version": "2.0.16", "description": "A small, no-dependency lib for converting to and from roman numerals", "main": "romans.js", "types": "romans.d.ts",