Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/check-dist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ jobs:
steps:
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955

- name: Set Node.js 16.x
- name: Set Node.js 24.x
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e
with:
node-version: 16.x
node-version: 24.x

- name: Install dependencies
run: npm ci
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955

- name: Set Node.js 24.x
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e
with:
node-version: 24.x

- run: |
npm install
- run: |
Expand Down
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@

GitHub Action to facilitate interaction with Appetize's API. This action can be used to upload an Android .apk or iOS .app to Appetize.

## :warning: Requirements

This action runs on the `node24` runtime. GitHub-hosted runners support it out of the box; self-hosted runners must be on runner version `v2.327.1` or later.

## :arrow_right: Inputs

| Name | Description | Required | Default |
Expand Down Expand Up @@ -61,6 +65,8 @@ GitHub Action to facilitate interaction with Appetize's API. This action can be

### Install the dependencies

Requires Node.js 24 or later.

```bash
npm install
```
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,5 +56,5 @@ outputs:
publicKey:
description: 'The public key of the app that was created or updated'
runs:
using: 'node16'
using: 'node24'
main: 'dist/index.js'
23 changes: 14 additions & 9 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,16 @@
],
"author": "Appetize",
"license": "MIT",
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
},
"dependencies": {
"@actions/core": "^1.10.1",
"axios": "^1.7.7"
},
"devDependencies": {
"@eslint/compat": "^1.2.7",
"@types/node": "^22.9.0",
"@types/node": "^24.0.0",
"@typescript-eslint/eslint-plugin": "^8.28.0",
"@typescript-eslint/parser": "^8.28.0",
"@vercel/ncc": "^0.38.3",
Expand Down
4 changes: 2 additions & 2 deletions tsconfig.base.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
"declaration": false,
"declarationMap": false,
"forceConsistentCasingInFileNames": true,
"lib": ["ES2022"],
"target": "ES2022",
"lib": ["ES2024"],
"target": "ES2024",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"noImplicitAny": true,
Expand Down
Loading