Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 3f3760b

Browse files
authored
Merge pull request pre-commit#3011 from hack3ric/bump-node-and-go-version
Bump Node.js version to 18.14.0 and Go to 1.21.1
2 parents 051f4e2 + 5e05b01 commit 3f3760b

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

tests/languages/golang_test.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,11 +111,11 @@ def test_golang_versioned(tmp_path):
111111
tmp_path,
112112
golang,
113113
'go version',
114-
version='1.18.4',
114+
version='1.21.1',
115115
)
116116

117117
assert ret == 0
118-
assert out.startswith(b'go version go1.18.4')
118+
assert out.startswith(b'go version go1.21.1')
119119

120120

121121
def test_local_golang_additional_deps(tmp_path):

tests/languages/node_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ def test_node_with_user_config_set(tmp_path):
139139
test_node_hook_system(tmp_path)
140140

141141

142-
@pytest.mark.parametrize('version', (C.DEFAULT, '18.13.0'))
142+
@pytest.mark.parametrize('version', (C.DEFAULT, '18.14.0'))
143143
def test_node_hook_versions(tmp_path, version):
144144
_make_hello_world(tmp_path)
145145
ret = run_language(tmp_path, node, 'node-hello', version=version)

0 commit comments

Comments
 (0)