Skip to content

Commit c8606d1

Browse files
authored
Merge branch 'main' into wzh-5347-vulnerability-scan-refactor
2 parents 1bad557 + a5193c5 commit c8606d1

File tree

56 files changed

+775
-302
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+775
-302
lines changed

.github/actions/update_operator_version/action.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ runs:
3434
steps:
3535
- name: Check branch and release type
3636
id: checkRelease
37-
uses: IABTechLab/uid2-shared-actions/actions/check_branch_and_release_type@v2
37+
uses: IABTechLab/uid2-shared-actions/actions/check_branch_and_release_type@v3
3838
with:
3939
release_type: ${{ inputs.release_type }}
4040

@@ -81,7 +81,7 @@ runs:
8181

8282
- name: Set version number
8383
id: version
84-
uses: IABTechLab/uid2-shared-actions/actions/version_number@v2
84+
uses: IABTechLab/uid2-shared-actions/actions/version_number@v3
8585
with:
8686
type: ${{ inputs.release_type }}
8787
version_number: ${{ inputs.version_number_input }}

.github/workflows/publish-all-operators.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
GITHUB_CONTEXT: ${{ toJson(github) }}
6060

6161
- name: Check branch and release type
62-
uses: IABTechLab/uid2-shared-actions/actions/check_branch_and_release_type@v2
62+
uses: IABTechLab/uid2-shared-actions/actions/check_branch_and_release_type@v3
6363
with:
6464
release_type: ${{ inputs.release_type }}
6565

@@ -77,7 +77,7 @@ jobs:
7777

7878
- name: Set version number
7979
id: version
80-
uses: IABTechLab/uid2-shared-actions/actions/version_number@v2
80+
uses: IABTechLab/uid2-shared-actions/actions/version_number@v3
8181
with:
8282
type: ${{ env.RELEASE_TYPE }}
8383
branch_name: ${{ github.ref }}

conf/default-config.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,5 +38,6 @@
3838
"failure_shutdown_wait_hours": 120,
3939
"sharing_token_expiry_seconds": 2592000,
4040
"operator_type": "public",
41-
"enable_remote_config": false
41+
"enable_remote_config": false,
42+
"uid_instance_id_prefix": "local-operator"
4243
}

conf/docker-config.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,5 +42,6 @@
4242
"salts_expired_shutdown_hours": 12,
4343
"operator_type": "public",
4444
"disable_optout_token": true,
45-
"enable_remote_config": false
45+
"enable_remote_config": false,
46+
"uid_instance_id_prefix": "local-operator"
4647
}

conf/integ-config.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,6 @@
1818
"salts_expired_shutdown_hours": 12,
1919
"operator_type": "public",
2020
"disable_optout_token": true,
21-
"enable_remote_config": false
21+
"enable_remote_config": false,
22+
"uid_instance_id_prefix": "local-operator"
2223
}

conf/local-config.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,5 +41,6 @@
4141
"operator_type": "public",
4242
"encrypted_files": false,
4343
"disable_optout_token": true,
44-
"enable_remote_config": false
44+
"enable_remote_config": false,
45+
"uid_instance_id_prefix": "local-operator"
4546
}

conf/local-e2e-docker-private-config.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,6 @@
3131
"cloud_refresh_interval": 30,
3232
"salts_expired_shutdown_hours": 12,
3333
"operator_type": "private",
34-
"enable_remote_config": false
34+
"enable_remote_config": false,
35+
"uid_instance_id_prefix": "local-private-operator"
3536
}

conf/local-e2e-docker-public-config.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,5 +38,6 @@
3838
"salts_expired_shutdown_hours": 12,
3939
"operator_type": "public",
4040
"disable_optout_token": true,
41-
"enable_remote_config": false
41+
"enable_remote_config": false,
42+
"uid_instance_id_prefix": "local-public-operator"
4243
}

conf/local-e2e-private-config.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,5 +42,6 @@
4242
"client_side_token_generate_log_invalid_http_origins": true,
4343
"salts_expired_shutdown_hours": 12,
4444
"operator_type": "private",
45-
"enable_remote_config": false
45+
"enable_remote_config": false,
46+
"uid_instance_id_prefix": "local-private-operator"
4647
}

conf/local-e2e-public-config.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,5 +44,6 @@
4444
"salts_expired_shutdown_hours": 12,
4545
"operator_type": "public",
4646
"disable_optout_token": true,
47-
"enable_remote_config": false
47+
"enable_remote_config": false,
48+
"uid_instance_id_prefix": "local-public-operator"
4849
}

0 commit comments

Comments
 (0)