7 Commits

Author SHA1 Message Date
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
blacksmith-sh[bot]
61ada6397e .github/workflows: Migrate workflows to Blacksmith runners (#9)
Migrate workflows to Blacksmith

Co-authored-by: blacksmith-sh[bot] <157653362+blacksmith-sh[bot]@users.noreply.github.com>
2025-09-27 08:12:29 +03:30
Nexim Bot
bf6971e1af Revert "deps(deps): bump actions/setup-node from 4 to 5 in the github-actions group" (#7) 2025-09-08 13:29:09 +03:30
Nexim Bot
3bc559e467 Revert "deps(deps): bump actions/setup-node from 4 to 5 in the github-actions…"
This reverts commit 1660ce4e02.
2025-09-08 13:28:57 +03:30
dependabot[bot]
1660ce4e02 deps(deps): bump actions/setup-node from 4 to 5 in the github-actions group (#6)
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-06 12:08:17 +03:30
6 changed files with 11 additions and 8 deletions

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: ubuntu-latest runs-on: blacksmith-2vcpu-ubuntu-2404
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

@@ -14,7 +14,7 @@ on:
jobs: jobs:
main: main:
name: CodeQL Analyze name: CodeQL Analyze
runs-on: ubuntu-latest runs-on: blacksmith-2vcpu-ubuntu-2404
strategy: strategy:
fail-fast: false fail-fast: false

View File

@@ -23,7 +23,7 @@ on:
jobs: jobs:
main: main:
name: Dependency Review name: Dependency Review
runs-on: ubuntu-latest runs-on: blacksmith-2vcpu-ubuntu-2404
steps: steps:
- name: ⤵️ Checkout repository - name: ⤵️ Checkout repository

View File

@@ -37,10 +37,11 @@ jobs:
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

@@ -28,7 +28,7 @@ on:
jobs: jobs:
main: main:
name: Build & Lint & Test & Release name: Build & Lint & Test & Release
runs-on: ubuntu-latest runs-on: blacksmith-2vcpu-ubuntu-2404
steps: steps:
- name: ⤵️ Checkout repository - name: ⤵️ Checkout repository
@@ -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

View File

@@ -12,7 +12,7 @@ on:
jobs: jobs:
main: main:
name: Sync labels name: Sync labels
runs-on: ubuntu-latest runs-on: blacksmith-2vcpu-ubuntu-2404
steps: steps:
- name: ⤵️ Check out code from GitHub - name: ⤵️ Check out code from GitHub