Skip to content

Commit 3f2845e

Browse files
committed
use env variable instead of secret
1 parent 4a8d5ae commit 3f2845e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/run-tests.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ jobs:
1919
oracle:
2020
image: gvenzl/oracle-free:latest
2121
env:
22-
APP_USER: ${{ secrets.GORM_ORACLEDB_USER }}
23-
APP_USER_PASSWORD: ${{ secrets.GORM_ORACLEDB_PASSWORD }}
22+
APP_USER: ${{ env.GORM_ORACLEDB_USER }}
23+
APP_USER_PASSWORD: ${{ env.GORM_ORACLEDB_PASSWORD }}
2424
ORACLE_RANDOM_PASSWORD: yes
2525
ports:
2626
- 1521:1521

0 commit comments

Comments
 (0)