File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 23
23
24
24
steps :
25
25
- name : Checkout repository
26
- uses : actions/checkout@v3
26
+ uses : actions/checkout@v4
27
27
if : env.DOCKER_REPO != null # check permissions
28
28
env :
29
29
DOCKER_REPO : ${{ secrets.SLO_DOCKER_REPO }}
58
58
workload_build_context0 : ../.
59
59
workload_build_options0 : -f Dockerfile
60
60
61
- - uses : actions/upload-artifact@v3
61
+ - uses : actions/upload-artifact@v4
62
62
if : always() && env.DOCKER_REPO != null # check permissions and execute, even if the previous stage was failed
63
63
env :
64
64
DOCKER_REPO : ${{ secrets.SLO_DOCKER_REPO }}
Original file line number Diff line number Diff line change 60
60
run : composer install --prefer-dist --no-progress
61
61
62
62
- name : Create YDB User
63
- run : docker exec $(docker ps --latest --quiet) /ydb -e grpc://localhost:2136 -d /local scripting yql -s "CREATE USER testuser PASSWORD 'test_password '"
63
+ run : docker exec $(docker ps --latest --quiet) /ydb -e grpc://localhost:2136 -d /local scripting yql -s "CREATE USER testuser PASSWORD 'testpassword '"
64
64
65
65
- name : Run tests
66
66
run : ./vendor/bin/phpunit \
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ public function testGetAuthToken()
27
27
'iam_config ' => [
28
28
'insecure ' => true ,
29
29
],
30
- 'credentials ' => new StaticAuthentication ('testuser ' , 'test_password ' )
30
+ 'credentials ' => new StaticAuthentication ('testuser ' , 'testpassword ' )
31
31
];
32
32
$ ydb = new Ydb ($ config , new SimpleStdLogger (7 ));
33
33
$ ydb ->table ()->query ("SELECT 1; " );
You can’t perform that action at this time.
0 commit comments