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
172 changes: 0 additions & 172 deletions .circleci/config.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/deploy-beta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
environment:
name: beta
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: actions/[email protected]
with:
node-version: "22.x"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
environment:
name: release
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
# Setup .npmrc file to publish to npm
- uses: actions/[email protected]
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/github-dependents-info.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
steps:
# Git Checkout
- name: Checkout Code
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
token: ${{ secrets.PAT || secrets.GITHUB_TOKEN }}
fetch-depth: 0
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/mega-linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@ jobs:
steps:
# Git Checkout
- name: Checkout Code
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0

# Mega-Linter
- name: Mega-Linter
uses: oxsecurity/megalinter/flavors/cupcake@v8
uses: oxsecurity/megalinter/flavors/cupcake@v9
env:
# All available variables are described in documentation
# https://github.com/oxsecurity/megalinter#configuration
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
timeout-minutes: 15
steps:
- name: Checkout Code
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Install node
uses: actions/setup-node@v4
with:
Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:
timeout-minutes: 15
steps:
- name: Checkout Code
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Install dependencies and link
run: npm ci
- name: Run tests
Expand Down
1 change: 1 addition & 0 deletions .mega-linter.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
DISABLE_ERRORS_LINTERS:
- ACTION_ACTIONLINT
- SPELL_LYCHEE
FILTER_REGEX_EXCLUDE: (docs\/github-dependents-info\.md|package-lock\.json)
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## Unreleased

- CI: Upgrade MegaLinter to v9
- CI: Remove CircleCI
- Upgrade dependencies

## [4.2.1] 2025-05-25

- Fix to allow absolute path to JAR file
Expand Down
Loading