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
2 changes: 1 addition & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"plugins": ["@typescript-eslint"],
"extends": [
"plugin:github/typescript",
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended",
"plugin:escompat/recommended"
],
Expand Down
7 changes: 3 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ jobs:
permissions: write-all
steps:
- name: Setup node
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version: 20.x
node-version: 24.x

- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Install dependencies
run: npm ci
Expand All @@ -42,4 +42,3 @@ jobs:
with:
token: ${{ env.GITHUB_TOKEN }}
environment: test

2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20
24
4 changes: 2 additions & 2 deletions __tests__/main.test.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import anyTest, { TestFn } from 'ava';
import anyTest, { type TestFn } from 'ava';
import * as github from '@actions/github';
import { Octokit } from '@octokit/core';
import { DeploymentRef, main } from '../src/execute';
import { type DeploymentRef, main } from '../src/execute.ts';
Comment thread
maks-oleksyuk marked this conversation as resolved.
import { RequestError } from '@octokit/request-error';

const test = anyTest as TestFn<{
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@ inputs:
description: Only inactive deployments, keep the environment and deployments. Defaults to false
required: false
runs:
using: node20
using: node24
main: 'dist/index.js'
Loading
Loading