Skip to content

Commit 2dd2e30

Browse files
Update Node version in GitHub workflow (#81)
1 parent c31eb86 commit 2dd2e30

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

.github/workflows/check.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
- name: setup node build environment
6868
uses: actions/setup-node@v4
6969
with:
70-
node-version: '14'
70+
node-version: ${{ env.NODE_VERSION }}
7171
- name: install dependencies
7272
run: npm install --global uglify-js js-beautify
7373
- name: set RELEASE number

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.6.35
1+
1.6.36

c/doc/Doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ PROJECT_NAME = "NumKey"
3232
# This could be handy for archiving the generated documentation or
3333
# if some version control system is used.
3434

35-
PROJECT_NUMBER = 1.6.35
35+
PROJECT_NUMBER = 1.6.36
3636

3737
# Using the PROJECT_BRIEF tag one can provide an optional one line description
3838
# for a project that appears at the top of each page and should give viewer

cgo/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ GOFMT=$(shell which gofmt)
5050
GOTEST=GOPATH=$(GOPATH) $(shell which gotest)
5151
GODOC=GOPATH=$(GOPATH) $(shell which godoc)
5252
GOLANGCILINT=$(BINUTIL)/golangci-lint
53-
GOLANGCILINTVERSION=v2.0.2
53+
GOLANGCILINTVERSION=v2.1.2
5454

5555
# Directory containing the source code
5656
SRCDIR=./src

go/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ GOFMT=$(shell which gofmt)
5050
GOTEST=GOPATH=$(GOPATH) $(shell which gotest)
5151
GODOC=GOPATH=$(GOPATH) $(shell which godoc)
5252
GOLANGCILINT=$(BINUTIL)/golangci-lint
53-
GOLANGCILINTVERSION=v2.0.2
53+
GOLANGCILINTVERSION=v2.1.2
5454

5555
# Directory containing the source code
5656
SRCDIR=./src

python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def run(self):
3030

3131
setup(
3232
name="numkey",
33-
version="1.6.35.1",
33+
version="1.6.36.1",
3434
keywords=("numkey E.164 shortcode lvn did encoding"),
3535
description="NumKey Bindings for Python",
3636
long_description=read("../README.md"),

0 commit comments

Comments
 (0)