Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ossf-scoreboard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,6 @@ jobs:
retention-days: 5

- name: "Upload to code-scanning"
uses: github/codeql-action/upload-sarif@07bb2b932c90fc1ec97637495e4072a0966fa74c # v3.28.20
uses: github/codeql-action/upload-sarif@32f7c15247fa6542dc765bd40f6a15dc2caeed89 # v4.31.2
with:
sarif_file: results.sarif
5 changes: 4 additions & 1 deletion docs/CONFIGURATION_CHECKS.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,10 @@ You first need to make sure that you are logged into Azure CLI on the management
az login --identity

# Login to Azure using User Assigned Managed Identity
az login --identity -u <client-id-of-user-assigned-managed-identity>
# When using management server with SLES or Ubuntu OS
az login --identity -client-id <client-id-of-user-assigned-managed-identity>
# When using management server with RHEL OS
az login --identity --username <client-id-of-user-assigned-managed-identity>

# Set the desired subscription context
az account set --subscription <subscription-id>
Expand Down
1 change: 1 addition & 0 deletions src/module_utils/filesystem_collector.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"""
Collectors for data collection in SAP Automation QA
"""
import ipaddress
import json
import logging
from typing import Any
Expand Down