3 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
3 changed files with 7 additions and 4 deletions

View File

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

View File

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

View File

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