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
19 changes: 10 additions & 9 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
name: preliminary-checks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Ensure version is properly set
run: |
test "$(npm -s run get-version)" = "${{ github.event.inputs.tag }}"
Expand All @@ -24,9 +24,9 @@ jobs:
runs-on: ubuntu-latest
needs: check
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
# Setup .npmrc file to publish to GitHub Packages
- uses: actions/setup-node@v4
- uses: actions/setup-node@v6
with:
node-version: '22'
registry-url: 'https://npm.pkg.github.com'
Expand All @@ -37,18 +37,19 @@ jobs:
publish-npm:
runs-on: ubuntu-latest
needs: check
permissions:
id-token: write
contents: read
environment: npmjs
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
# Setup .npmrc file to publish to npmjs.org
- uses: actions/setup-node@v4
- uses: actions/setup-node@v6
with:
node-version: '22'
node-version: '24'
registry-url: 'https://registry.npmjs.org'
- run: npm install
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- run: npm publish --access public
release-github:
runs-on: ubuntu-latest
needs:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: actions/setup-node@v4
uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: '22'
cache: 'npm'
Expand Down
5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,10 @@
"sourceMap": true,
"instrument": true
},
"repository": "git://github.com/scality/hdclient.git ",
"repository": {
"type": "git",
"url": "https://github.com/scality/hdclient.git"
},
"author": "Maxime Lubin",
"dependencies": {
"httpagent": "github:scality/httpagent#1.1.0",
Expand Down
Loading