From 62138e581c5aa915dd0c782e697abff11e304085 Mon Sep 17 00:00:00 2001 From: Jason McNeil Date: Tue, 28 May 2024 13:49:20 -0300 Subject: [PATCH] ci: fix --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 21c42c5..fbc7ec8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,9 +11,9 @@ jobs: image: container-registry.oracle.com/database/free:latest env: ORACLE_PWD: Test123 - options: --name oracle -p 1522:1521 + options: --name oracle ports: - - 1522:1521 + - 1521:1521 steps: - name: Checkout code @@ -41,4 +41,4 @@ jobs: " - name: Test the connection - run: go run main.go -server "oracle://test:Test123@localhost:1522/FREE" "select * from test_table" \ No newline at end of file + run: go run main.go -server "oracle://test:Test123@localhost:1521/FREE" "select * from test_table" \ No newline at end of file