deploy-stack 0.9.0 → 0.9.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "deploy-stack",
3
- "version": "0.9.0",
3
+ "version": "0.9.1",
4
4
  "description": "Provision production-ready AWS infrastructure and CI/CD pipelines in seconds.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -1,5 +1,5 @@
1
1
  # Stage 1: Compile
2
- FROM golang:1.22-alpine AS builder
2
+ FROM golang:1.26-alpine AS builder
3
3
  WORKDIR /app
4
4
  COPY go.mod go.sum* ./
5
5
  RUN go mod download
@@ -7,7 +7,7 @@ COPY . .
7
7
  RUN CGO_ENABLED=0 GOOS=linux go build -o /main .
8
8
 
9
9
  # Stage 2: Production runner
10
- FROM alpine:3.19
10
+ FROM alpine:3.20
11
11
  WORKDIR /app
12
12
 
13
13
  # Create unprivileged user
@@ -24,7 +24,7 @@ jobs:
24
24
 
25
25
  steps:
26
26
  - name: Checkout Code
27
- uses: actions/checkout@v4
27
+ uses: actions/checkout@v5
28
28
 
29
29
  # --- 1. IaC SECURITY SCAN ---
30
30
  - name: Scan Terraform for Misconfigurations
@@ -59,7 +59,7 @@ jobs:
59
59
  # --- 3. BUILD & PUSH ---
60
60
  - name: Login to Amazon ECR
61
61
  id: login-ecr
62
- uses: aws-actions/amazon-ecr-login@v2
62
+ uses: aws-actions/amazon-ecr-login@v3
63
63
 
64
64
  - name: Build Docker image
65
65
  id: build-image