From bb37b52fecb20176255ec7b4253734c47881737a Mon Sep 17 00:00:00 2001 From: Claude Date: Fri, 28 Aug 2026 19:32:03 +0000 Subject: [PATCH] chore: release v1.1.0 - bump package version 1.0.0 -> 1.1.0 (the field had drifted; tags were at v1.0.5) - repoint README usage examples to v1.1.0 - align the dev-setup node note with the engines floor Co-Authored-By: Claude Opus 5 Claude-Session: https://claude.ai/code/session_01UTdciRVE8crbaoxq4JyXt4 --- README.md | 6 +++--- package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 7631780..2a6f2d3 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,7 @@ This action runs on the `node24` runtime. GitHub-hosted runners support it out o ```yaml - name: Upload to Appetize - uses: appetizeio/github-action-appetize@v1.0.5 + uses: appetizeio/github-action-appetize@v1.1.0 with: apiToken: ${{ secrets.APPETIZE_API_TOKEN }} appFile: test/app.zip @@ -53,7 +53,7 @@ This action runs on the `node24` runtime. GitHub-hosted runners support it out o ```yaml - name: Upload to Appetize - uses: appetizeio/github-action-appetize@v1.0.5 + uses: appetizeio/github-action-appetize@v1.1.0 with: apiToken: ${{ secrets.APPETIZE_API_TOKEN }} publicKey: ${{ secrets.APPETIZE_PUBLIC_KEY }} @@ -65,7 +65,7 @@ This action runs on the `node24` runtime. GitHub-hosted runners support it out o ### Install the dependencies -Requires Node.js 24 or later. +Requires Node.js 18.18 or later. CI builds `dist/` on Node 24 — use 24 if you plan to commit a rebuilt bundle, so `check-dist` stays reproducible. ```bash npm install diff --git a/package-lock.json b/package-lock.json index f978dd9..c9d142c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "appetize-github-action", - "version": "1.0.0", + "version": "1.1.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "appetize-github-action", - "version": "1.0.0", + "version": "1.1.0", "license": "MIT", "dependencies": { "@actions/core": "^1.11.1", diff --git a/package.json b/package.json index 6f3ace5..f97a7bf 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "appetize-github-action", - "version": "1.0.0", + "version": "1.1.0", "private": true, "description": "Github Action to facilitate interaction with the Appetize API", "main": "lib/main.js",