Skip to content

[BugFix] Fix LDAP authentication bug where empty password can successfully login on AD server (backport #41982) #19107

[BugFix] Fix LDAP authentication bug where empty password can successfully login on AD server (backport #41982)

[BugFix] Fix LDAP authentication bug where empty password can successfully login on AD server (backport #41982) #19107

Workflow file for this run

name: MERGE PIPELINE
on:
pull_request_target:
branches:
- main
- 'branch*'
types:
- closed
jobs:
thirdparty-update-image:
runs-on: self-hosted
name: Thirdparty Update Image
if: github.event.pull_request.merged == true
env:
PR_NUMBER: ${{ github.event.number }}
BRANCH: ${{ github.base_ref }}
steps:
- name: clean
run: |
rm -rf ${{ github.workspace }}
mkdir -p ${{ github.workspace }}
- uses: dorny/paths-filter@v2
id: changes
with:
filters: |
thirdparty:
- 'thirdparty/**'
- 'docker/dockerfiles/dev-env/dev-env.Dockerfile'
- name: update image
if: steps.changes.outputs.thirdparty == 'true'
run: |
rm -rf ./ci-tool && cp -rf /var/lib/ci-tool ./ci-tool && cd ci-tool && git pull && source lib/init.sh
./bin/elastic-update-image.sh $BRANCH $PR_NUMBER
- name: Clean ENV
if: always()
run: |
rm -rf ${{ github.workspace }}/*