conlink 2.6.1 → 2.6.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -62,21 +62,27 @@ jobs:
62
62
  needs: [ check-release ]
63
63
  name: Release NPM
64
64
  runs-on: ubuntu-latest
65
+ permissions:
66
+ id-token: write
67
+ contents: read
65
68
  steps:
66
69
  - name: Checkout Repository
67
70
  uses: actions/checkout@v4
68
71
  with: { submodules: 'recursive', fetch-depth: 0 }
69
72
 
70
- # Setup .npmrc file to publish to npm
71
- - uses: actions/setup-node@v4
73
+ - name: Setup Node
74
+ uses: actions/setup-node@v4
72
75
  with:
73
76
  node-version: '20.x'
74
77
  registry-url: 'https://registry.npmjs.org'
75
- scope: ''
78
+
79
+ - name: Upgrade npm to support OIDC
80
+ run: |
81
+ npm install -g npm@11.12.0
82
+ node --version
83
+ npm --version
76
84
 
77
85
  - run: npm publish
78
- env:
79
- NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
80
86
 
81
87
  release-docker-hub:
82
88
  needs: [ check-release ]
@@ -136,7 +142,7 @@ jobs:
136
142
  - name: Create and push multi-arch manifests
137
143
  run: |
138
144
  docker buildx imagetools create \
139
- -t lonocloud/conlink:${RELEASE_VERSION}-test \
145
+ -t lonocloud/conlink:${RELEASE_VERSION} \
140
146
  lonocloud/conlink:${RELEASE_VERSION}-amd64 \
141
147
  lonocloud/conlink:${RELEASE_VERSION}-arm64
142
148
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "conlink",
3
- "version": "2.6.1",
3
+ "version": "2.6.3",
4
4
  "description": "conlink - Declarative Low-Level Networking for Containers",
5
5
  "repository": "https://github.com/Viasat/conlink",
6
6
  "license": "SEE LICENSE IN LICENSE",