Skip to content

Commit

Permalink
Merge branch 'main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
anmoel authored Jan 29, 2024
2 parents 41f9ee2 + 1210864 commit d748d7d
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@ jobs:
uses: actions/checkout@v4

- name: Initialize CodeQL
uses: github/codeql-action/init@v2
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}

- name: Autobuild
uses: github/codeql-action/autobuild@v2
uses: github/codeql-action/autobuild@v3

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
uses: github/codeql-action/analyze@v3
3 changes: 2 additions & 1 deletion .github/workflows/feature-branches.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,14 @@ jobs:
- name: Checkout source codes
uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v4
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Test client with nexus3 instance
env:
NEXUS3_LICENSE_B64_ENCODED: ${{ secrets.NEXUS3_LICENSE_B64_ENCODED }}
AZURE_STORAGE_ACCOUNT_KEY: ${{ secrets.AZURE_STORAGE_ACCOUNT_KEY }}
GOMAXPROCS: "1"
run: |
echo "${NEXUS3_LICENSE_B64_ENCODED}" | base64 -d > scripts/license.lic
make start-services
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

Sonatype Nexus Golang Client

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

## Development and testing

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/datadrivers/go-nexus-client

go 1.21
go 1.19

require (
github.com/google/go-querystring v1.1.0
Expand Down
2 changes: 1 addition & 1 deletion nexus3/routing_rule_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ func testRoutingRule(name string, mode schema.RoutingRuleMode) *schema.RoutingRu
return &schema.RoutingRule{
Name: name,
Mode: mode,
Description: fmt.Sprintf("Go client routing roule %s", name),
Description: fmt.Sprintf("Go client routing rule %s", name),
Matchers: []string{
"match1",
},
Expand Down
2 changes: 1 addition & 1 deletion scripts/.env
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export NEXUS_IMAGE=ghcr.io/datadrivers/docker-nexus3
export NEXUS_VERSION=3.61.0
export NEXUS_VERSION=3.64.0
export NEXUS_PORT=8081

0 comments on commit d748d7d

Please sign in to comment.