Compare commits

...

3 Commits

Author SHA1 Message Date
Bret Comnes
673cbf1b52 3.0.5 2026-03-26 13:20:55 -07:00
Bret Comnes
5b42bf8a8d Merge pull request #261 from Rauglothgor/chore/node24-action-runtime
Update action runtime to Node 24
2026-03-26 13:19:42 -07:00
Christopher Rand
ce6eafaf25 Update action runtime to Node 24 2026-03-26 01:44:41 -05:00
7 changed files with 1386 additions and 3660 deletions

View File

@@ -7,7 +7,31 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
## [v3.0.4](https://github.com/bcomnes/deploy-to-neocities/compare/v3.0.3...v3.0.4)
## [v3.0.5](https://github.com/bcomnes/deploy-to-neocities/compare/v3.0.4...v3.0.5)
### Merged
- Update action runtime to Node 24 [`#261`](https://github.com/bcomnes/deploy-to-neocities/pull/261)
- fix: update @actions/core import for v3.0.0 (no default export) [`#254`](https://github.com/bcomnes/deploy-to-neocities/pull/254)
- chore(deps): bump @actions/core from 2.0.2 to 2.0.3 [`#247`](https://github.com/bcomnes/deploy-to-neocities/pull/247)
- Add link to neocities-solo-stories in README [`#246`](https://github.com/bcomnes/deploy-to-neocities/pull/246)
- chore(deps): bump @actions/core from 2.0.1 to 2.0.2 [`#243`](https://github.com/bcomnes/deploy-to-neocities/pull/243)
- added oceanthunder.dev [`#242`](https://github.com/bcomnes/deploy-to-neocities/pull/242)
- chore(deps): bump @actions/core from 2.0.0 to 2.0.1 [`#240`](https://github.com/bcomnes/deploy-to-neocities/pull/240)
- chore(deps): bump minimatch from 10.0.3 to 10.1.1 [`#234`](https://github.com/bcomnes/deploy-to-neocities/pull/234)
- chore(deps-dev): bump esbuild from 0.25.12 to 0.27.1 [`#238`](https://github.com/bcomnes/deploy-to-neocities/pull/238)
- chore(deps): bump actions/checkout from 5 to 6 [`#236`](https://github.com/bcomnes/deploy-to-neocities/pull/236)
- chore(deps): bump actions/setup-node from 5 to 6 [`#233`](https://github.com/bcomnes/deploy-to-neocities/pull/233)
- chore(deps): bump actions/setup-node from 4 to 5 [`#229`](https://github.com/bcomnes/deploy-to-neocities/pull/229)
- chore(deps): bump actions/checkout from 4 to 5 [`#228`](https://github.com/bcomnes/deploy-to-neocities/pull/228)
### Commits
- Merge pull request #257 from bcomnes/dependabot/npm_and_yarn/neostandard-0.13.0 [`6c3a421`](https://github.com/bcomnes/deploy-to-neocities/commit/6c3a42116a404d3c2dacc98d254511c074976650)
- chore(deps-dev): bump neostandard from 0.12.2 to 0.13.0 [`b8a7e04`](https://github.com/bcomnes/deploy-to-neocities/commit/b8a7e04a8766e488b76a3eb1c55cd48a29cf1a25)
- Merge pull request #248 from bcomnes/dependabot/npm_and_yarn/actions/core-3.0.0 [`95f1120`](https://github.com/bcomnes/deploy-to-neocities/commit/95f112096fce7d78418502887c6d166ac68603d9)
## [v3.0.4](https://github.com/bcomnes/deploy-to-neocities/compare/v3.0.3...v3.0.4) - 2025-06-13
### Merged
@@ -365,8 +389,8 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
### Commits
- Update site build and ncc [`def67b4`](https://github.com/bcomnes/deploy-to-neocities/commit/def67b48c6e28d4544d8dd2bd92ab53f56856e40)
- Fix static deploy stuff with bandaid [`fea2d47`](https://github.com/bcomnes/deploy-to-neocities/commit/fea2d4780c7a98bcdf5738c1c259d66ff115326a)
- Update site build and ncc [`def67b4`](https://github.com/bcomnes/deploy-to-neocities/commit/def67b48c6e28d4544d8dd2bd92ab53f56856e40)
## [v1.1.1](https://github.com/bcomnes/deploy-to-neocities/compare/v1.1.0...v1.1.1) - 2021-08-20

View File

@@ -31,5 +31,5 @@ inputs:
required: false
deprecationMessage: 'api_token is deprecated, use api_key instead'
runs:
using: 'node20'
using: 'node24'
main: 'dist/index.cjs'

4455
dist/index.cjs vendored

File diff suppressed because it is too large Load Diff

8
dist/index.cjs.map vendored

File diff suppressed because one or more lines are too long

549
dist/meta.json vendored

File diff suppressed because it is too large Load Diff

View File

@@ -1,7 +1,7 @@
{
"name": "deploy-to-neocities",
"description": "Github Action to deplpoy a folder to Neocities.org",
"version": "3.0.4",
"version": "3.0.5",
"author": "Bret Comnes <bcomnes@gmail.com> (https://bret.io/)",
"bugs": {
"url": "https://github.com/bcomnes/deploy-to-neocities/issues"

View File

@@ -1,5 +1,5 @@
{
"extends": "@voxpelli/tsconfig/node20.json",
"extends": "@voxpelli/tsconfig/node24.json",
"compilerOptions": {
"skipLibCheck": true
},