From c23bcb8c8581ad27945c87d6481f071c81bc0d66 Mon Sep 17 00:00:00 2001 From: Matthew Warman Date: Mon, 20 Apr 2026 06:47:51 -0400 Subject: [PATCH 1/2] Bump version to 1.3.0-alpha.1 in package.json and package-lock.json --- infrastructure/package-lock.json | 4 ++-- infrastructure/package.json | 2 +- package-lock.json | 4 ++-- package.json | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/infrastructure/package-lock.json b/infrastructure/package-lock.json index d3e1108..7b45757 100644 --- a/infrastructure/package-lock.json +++ b/infrastructure/package-lock.json @@ -1,12 +1,12 @@ { "name": "@leanstacks/nestjs-starter-infrastructure", - "version": "1.2.0", + "version": "1.3.0-alpha.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@leanstacks/nestjs-starter-infrastructure", - "version": "1.2.0", + "version": "1.3.0-alpha.1", "dependencies": { "aws-cdk-lib": "2.245.0", "constructs": "10.6.0", diff --git a/infrastructure/package.json b/infrastructure/package.json index ee41557..41a7c82 100644 --- a/infrastructure/package.json +++ b/infrastructure/package.json @@ -1,6 +1,6 @@ { "name": "@leanstacks/nestjs-starter-infrastructure", - "version": "1.2.0", + "version": "1.3.0-alpha.1", "description": "AWS CDK infrastructure as code for the NestJS Starter application.", "private": true, "scripts": { diff --git a/package-lock.json b/package-lock.json index c55d345..94f26d7 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@leanstacks/nestjs-starter", - "version": "1.2.0", + "version": "1.3.0-alpha.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@leanstacks/nestjs-starter", - "version": "1.2.0", + "version": "1.3.0-alpha.1", "license": "MIT", "dependencies": { "@nestjs/cache-manager": "3.1.0", diff --git a/package.json b/package.json index 235c017..8159313 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@leanstacks/nestjs-starter", - "version": "1.2.0", + "version": "1.3.0-alpha.1", "description": "A starter kit for NestJS application components.", "author": "Matthew Warman", "license": "MIT", From 1f49802fa70bf5fae204da46b4392dbbbe8eaac6 Mon Sep 17 00:00:00 2001 From: Matthew Warman Date: Mon, 20 Apr 2026 06:53:25 -0400 Subject: [PATCH 2/2] Update GitHub Actions to use latest action versions for code quality and deployment workflows --- .github/workflows/code-quality.yml | 2 +- .github/workflows/deploy-dev.yml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/code-quality.yml b/.github/workflows/code-quality.yml index 87f84a1..179d638 100644 --- a/.github/workflows/code-quality.yml +++ b/.github/workflows/code-quality.yml @@ -233,7 +233,7 @@ jobs: - name: Archive test results if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: test-results path: | diff --git a/.github/workflows/deploy-dev.yml b/.github/workflows/deploy-dev.yml index cd45678..0fd632e 100644 --- a/.github/workflows/deploy-dev.yml +++ b/.github/workflows/deploy-dev.yml @@ -29,18 +29,18 @@ jobs: steps: # Step 1: Checkout repository - name: Checkout repository - uses: actions/checkout@v5 + uses: actions/checkout@v6 # Step 2: Setup Node.js using .nvmrc - name: Setup Node.js - uses: actions/setup-node@v5 + uses: actions/setup-node@v6 with: node-version-file: .nvmrc cache: 'npm' # Step 3: Configure AWS credentials for role and region - name: Configure AWS credentials - uses: aws-actions/configure-aws-credentials@v4 + uses: aws-actions/configure-aws-credentials@v6 with: role-to-assume: ${{ vars.AWS_ROLE_ARN_DEV }} role-session-name: deploy-nestjs-starter-dev