Skip to content
This repository was archived by the owner on Mar 16, 2026. It is now read-only.

Commit a8fc588

Browse files
committed
Upgrade to node24 and bump all deps
1 parent cf8fc6f commit a8fc588

14 files changed

Lines changed: 28017 additions & 32745 deletions

File tree

.eslintrc.json

Lines changed: 0 additions & 56 deletions
This file was deleted.

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ${{ matrix.os }}
99
strategy:
1010
matrix:
11-
os: [ubuntu-latest, windows-latest, macos-latest]
11+
os: [ubuntu-latest, windows-latest]
1212
steps:
1313
- uses: actions/checkout@v3
1414
- name: Test Action
@@ -22,9 +22,9 @@ jobs:
2222
runs-on: ${{ matrix.os }}
2323
strategy:
2424
matrix:
25-
os: [ubuntu-latest, windows-latest, macos-latest]
25+
os: [ubuntu-latest, windows-latest]
2626
steps:
27-
- uses: actions/checkout@v3
27+
- uses: actions/checkout@v6
2828
- name: Download test file
2929
run: |
3030
curl -Ls https://github.com/svenstaro/proxyboi/releases/download/0.1.5/proxyboi-linux-amd64 -o testbinary

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
# Changelog
2+
## 2.5.0
3+
- Update to node 24 and update all dependencies
4+
25
## [2.4.1] - 2024-02-21
36
- Update upx to 4.2.2
47

__tests__/main.test.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
import * as fs from 'fs'
22
import * as os from 'os'
33
import * as exec from '@actions/exec'
4-
import {run} from '../src/action'
4+
import { run } from '../src/action'
55

66
beforeAll(async () => {
7-
fs.mkdirSync('test-data', {recursive: true})
7+
fs.mkdirSync('test-data', { recursive: true })
88
if (os.type() == 'Linux') {
99
await exec.exec(
1010
'curl',
1111
[
1212
'-LO',
1313
'https://github.com/svenstaro/proxyboi/releases/download/0.1.5/proxyboi-linux-amd64'
1414
],
15-
{cwd: 'test-data'}
15+
{ cwd: 'test-data' }
1616
)
1717
fs.chmodSync('test-data/proxyboi-linux-amd64', '755')
1818
process.env['INPUT_FILES'] = 'test-data/proxyboi-linux-amd64'
@@ -23,7 +23,7 @@ beforeAll(async () => {
2323
'-LO',
2424
'https://github.com/svenstaro/proxyboi/releases/download/0.1.5/proxyboi-macos-amd64'
2525
],
26-
{cwd: 'test-data'}
26+
{ cwd: 'test-data' }
2727
)
2828
fs.chmodSync('test-data/proxyboi-macos-amd64', '755')
2929
process.env['INPUT_FILES'] = 'test-data/proxyboi-macos-amd64'
@@ -34,7 +34,7 @@ beforeAll(async () => {
3434
'-LO',
3535
'https://github.com/svenstaro/proxyboi/releases/download/0.1.5/proxyboi-windows-amd64.exe'
3636
],
37-
{cwd: 'test-data'}
37+
{ cwd: 'test-data' }
3838
)
3939
process.env['INPUT_FILES'] = 'test-data/proxyboi-windows-amd64.exe'
4040
}

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@ inputs:
2020
strip_args:
2121
description: 'Arguments to pass to strip'
2222
runs:
23-
using: 'node20'
23+
using: 'node24'
2424
main: 'dist/index.js'

0 commit comments

Comments
 (0)