6 Commits
v1.1.3 ... next

Author SHA1 Message Date
fb31317274 self hosted 2026-01-20 10:42:47 +03:30
8ed9f1f8e2 feat(labels): add new labels for issue tracking and versioning 2025-11-29 08:32:01 +03:30
dependabot[bot]
3e1c8154f5 deps(deps): bump github/codeql-action from 3 to 4 in the github-actions group (#10)
deps(deps): bump github/codeql-action in the github-actions group

Bumps the github-actions group with 1 update: [github/codeql-action](https://github.com/github/codeql-action).


Updates `github/codeql-action` from 3 to 4
- [Release notes](https://github.com/github/codeql-action/releases)
- [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
- [Commits](https://github.com/github/codeql-action/compare/v3...v4)

---
updated-dependencies:
- dependency-name: github/codeql-action
  dependency-version: '4'
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: github-actions
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-09 12:05:26 +03:30
f2fb306124 fix(publish-npm): use github provider because the PROVENANCE require github self hosted runner 2025-10-04 07:47:01 +03:30
1fe34245e3 ci: disable package manager cache tmp 2025-09-27 08:46:40 +00:00
dependabot[bot]
9c20c5bc92 deps(deps): bump actions/setup-node from 4 to 5 in the github-actions group (#8)
deps(deps): bump actions/setup-node in the github-actions group

Bumps the github-actions group with 1 update: [actions/setup-node](https://github.com/actions/setup-node).


Updates `actions/setup-node` from 4 to 5
- [Release notes](https://github.com/actions/setup-node/releases)
- [Commits](https://github.com/actions/setup-node/compare/v4...v5)

---
updated-dependencies:
- dependency-name: actions/setup-node
  dependency-version: '5'
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: github-actions
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-27 10:07:07 +03:30
5 changed files with 71 additions and 8 deletions

60
.github/labels.yml vendored Normal file
View File

@@ -0,0 +1,60 @@
- name: 'feature'
color: 0E8A16
description: 'Represents all feature requests and new feature implementations. (Replaces feature-request and new-feature)'
- name: 'bug'
color: D93F0B
description: 'Something is not working as expected.'
- name: 'breaking-change'
color: B60205
description: 'A change that changes the API or breaks backward compatibility for users.'
- name: 'security'
color: B80808
description: 'Addressing a vulnerability or security risk in this project.'
- name: 'documentation'
color: 0052CC
description: 'Solely about the documentation of the project.'
- name: 'refactor'
color: 1D76DB
description: 'Updating the code with simpler, easier to understand or more efficient syntax or methods.'
- name: 'ci'
color: 1D76DB
description: 'Work that improves the continuous integration.'
- name: 'dependencies'
color: 1D76DB
description: 'Change in project dependencies.'
- name: 'in-progress'
color: F7C632
description: 'Issue is currently being worked on by a developer.'
- name: 'ready-for-review'
color: 0E5C0D
description: 'Work is done, initial tests (Self-Review) passed, and ready for review by colleagues.'
- name: 'changes-requested'
color: D93F0B
description: 'Reviewer has requested changes/corrections. Author needs to work on it again.'
- name: 'waiting-on-author'
color: FBCA04
description: 'Workflow is paused, waiting for author response/changes/clarification.'
- name: 'blocked'
color: B60205
description: 'PR/Issue cannot proceed due to external dependency or CI/CD issue.'
- name: 'priority-critical'
color: B80808
description: 'Must be addressed as soon as possible.'
- name: 'priority-high'
color: D93F0B
description: 'After critical issues are fixed, these should be dealt with before any further issues.'
- name: 'priority-medium'
color: 5319E7
description: 'This issue may be useful, and needs some attention.'
- name: 'priority-low'
color: 5319E7
description: 'Nice addition, maybe... someday...'
- name: 'major'
color: B60205
description: 'This PR causes a major bump in the version number.'
- name: 'minor'
color: 0E8A16
description: 'This PR causes a minor bump in the version number.'
- name: 'Jules'
color: 5319E7
description: 'Label for Google Jules AI.'

View File

@@ -18,16 +18,17 @@ on:
jobs: jobs:
main: main:
name: Build, Lint, and Test Project name: Build, Lint, and Test Project
runs-on: blacksmith-2vcpu-ubuntu-2404 runs-on: self-hosted
steps: steps:
- name: 📥 Checkout repository - name: 📥 Checkout repository
uses: actions/checkout@v5 uses: actions/checkout@v5
- name: 🔧 Setup Node.js - name: 🔧 Setup Node.js
uses: actions/setup-node@v4 uses: actions/setup-node@v5
with: with:
node-version: ${{ inputs.node-version }} node-version: ${{ inputs.node-version }}
package-manager-cache: false
- name: 🛠️ Setup Node.js Corepack - name: 🛠️ Setup Node.js Corepack
run: corepack enable run: corepack enable

View File

@@ -27,14 +27,14 @@ jobs:
uses: actions/checkout@v5 uses: actions/checkout@v5
- name: 🏗 Initialize CodeQL - name: 🏗 Initialize CodeQL
uses: github/codeql-action/init@v3 uses: github/codeql-action/init@v4
with: with:
languages: ${{ matrix.language }} languages: ${{ matrix.language }}
# Details on CodeQL's query packs refer to https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs # Details on CodeQL's query packs refer to https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
# queries: security-extended,security-and-quality # queries: security-extended,security-and-quality
- name: 🏗 Auto build - name: 🏗 Auto build
uses: github/codeql-action/autobuild@v3 uses: github/codeql-action/autobuild@v4
- name: 🚀 Perform CodeQL Analysis - name: 🚀 Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3 uses: github/codeql-action/analyze@v4

View File

@@ -30,17 +30,18 @@ jobs:
if: github.repository_owner == 'the-nexim' if: github.repository_owner == 'the-nexim'
name: Publish NPM name: Publish NPM
runs-on: blacksmith-2vcpu-ubuntu-2404 runs-on: ubuntu-latest
steps: steps:
- name: 📥 Checkout repository - name: 📥 Checkout repository
uses: actions/checkout@v5 uses: actions/checkout@v5
- name: 🔧 Setup Node.js - name: 🔧 Setup Node.js
uses: actions/setup-node@v4 uses: actions/setup-node@v5
with: with:
node-version: ${{ inputs.node-version }} node-version: ${{ inputs.node-version }}
registry-url: ${{ inputs.npm-registry-url }} registry-url: ${{ inputs.npm-registry-url }}
package-manager-cache: false
- name: 🛠️ Setup Node.js Corepack - name: 🛠️ Setup Node.js Corepack
run: corepack enable run: corepack enable

View File

@@ -55,9 +55,10 @@ jobs:
GPG_KEY_ID: ${{ secrets.GPG_KEY_ID }} GPG_KEY_ID: ${{ secrets.GPG_KEY_ID }}
- name: 🔧 Setup Node.js - name: 🔧 Setup Node.js
uses: actions/setup-node@v4 uses: actions/setup-node@v5
with: with:
node-version: ${{ inputs.node-version }} node-version: ${{ inputs.node-version }}
package-manager-cache: false
- name: 🛠️ Setup Node.js Corepack - name: 🛠️ Setup Node.js Corepack
run: corepack enable run: corepack enable