Skip to content

Commit 1210864

Browse files
authored
Merge pull request #135 from datadrivers/feat/update-test
ci: Update version of nexus test instance to 3.64.0
2 parents 8b848b2 + 8fa79d0 commit 1210864

File tree

5 files changed

+5
-4
lines changed

5 files changed

+5
-4
lines changed

.github/workflows/feature-branches.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ jobs:
1919
env:
2020
NEXUS3_LICENSE_B64_ENCODED: ${{ secrets.NEXUS3_LICENSE_B64_ENCODED }}
2121
AZURE_STORAGE_ACCOUNT_KEY: ${{ secrets.AZURE_STORAGE_ACCOUNT_KEY }}
22+
GOMAXPROCS: "1"
2223
run: |
2324
echo "${NEXUS3_LICENSE_B64_ENCODED}" | base64 -d > scripts/license.lic
2425
make start-services

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
Sonatype Nexus Golang Client
1010

11-
Implemented and tested with Sonatype Nexus `3.61.0-02`.
11+
Implemented and tested with Sonatype Nexus `3.64.0-03`.
1212

1313
## Development and testing
1414

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/datadrivers/go-nexus-client
22

3-
go 1.21
3+
go 1.19
44

55
require (
66
github.com/google/go-querystring v1.1.0

nexus3/routing_rule_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ func testRoutingRule(name string, mode schema.RoutingRuleMode) *schema.RoutingRu
1212
return &schema.RoutingRule{
1313
Name: name,
1414
Mode: mode,
15-
Description: fmt.Sprintf("Go client routing roule %s", name),
15+
Description: fmt.Sprintf("Go client routing rule %s", name),
1616
Matchers: []string{
1717
"match1",
1818
},

scripts/.env

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
export NEXUS_IMAGE=ghcr.io/datadrivers/docker-nexus3
2-
export NEXUS_VERSION=3.61.0
2+
export NEXUS_VERSION=3.64.0
33
export NEXUS_PORT=8081

0 commit comments

Comments
 (0)