├── .github ├── dependabot.yml └── workflows │ ├── codeql.yml │ ├── dependency-review.yml │ ├── security-scorecard.yml │ ├── test-action-call.yml │ └── update-nudge-version.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .tool-versions ├── LICENSE ├── README.md ├── app ├── README.md ├── __init__.py ├── lib │ ├── arguments.py │ └── utils.py ├── requirements.in ├── requirements.txt ├── resources │ ├── apple_root_ca.pem │ ├── gdfm.json │ └── template.json └── update_nudge_osVersionRequirements.py ├── examples ├── README.md └── upload_to_azure.yml └── nudge.json /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithjw/nudge-actions/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithjw/nudge-actions/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/dependency-review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithjw/nudge-actions/HEAD/.github/workflows/dependency-review.yml -------------------------------------------------------------------------------- /.github/workflows/security-scorecard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithjw/nudge-actions/HEAD/.github/workflows/security-scorecard.yml -------------------------------------------------------------------------------- /.github/workflows/test-action-call.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithjw/nudge-actions/HEAD/.github/workflows/test-action-call.yml -------------------------------------------------------------------------------- /.github/workflows/update-nudge-version.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithjw/nudge-actions/HEAD/.github/workflows/update-nudge-version.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .venv 3 | __pycache__/ 4 | .envrc 5 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithjw/nudge-actions/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.tool-versions: -------------------------------------------------------------------------------- 1 | python 3.12.3 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithjw/nudge-actions/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithjw/nudge-actions/HEAD/README.md -------------------------------------------------------------------------------- /app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithjw/nudge-actions/HEAD/app/README.md -------------------------------------------------------------------------------- /app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/lib/arguments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithjw/nudge-actions/HEAD/app/lib/arguments.py -------------------------------------------------------------------------------- /app/lib/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithjw/nudge-actions/HEAD/app/lib/utils.py -------------------------------------------------------------------------------- /app/requirements.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithjw/nudge-actions/HEAD/app/requirements.in -------------------------------------------------------------------------------- /app/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithjw/nudge-actions/HEAD/app/requirements.txt -------------------------------------------------------------------------------- /app/resources/apple_root_ca.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithjw/nudge-actions/HEAD/app/resources/apple_root_ca.pem -------------------------------------------------------------------------------- /app/resources/gdfm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithjw/nudge-actions/HEAD/app/resources/gdfm.json -------------------------------------------------------------------------------- /app/resources/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithjw/nudge-actions/HEAD/app/resources/template.json -------------------------------------------------------------------------------- /app/update_nudge_osVersionRequirements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithjw/nudge-actions/HEAD/app/update_nudge_osVersionRequirements.py -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithjw/nudge-actions/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/upload_to_azure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithjw/nudge-actions/HEAD/examples/upload_to_azure.yml -------------------------------------------------------------------------------- /nudge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smithjw/nudge-actions/HEAD/nudge.json --------------------------------------------------------------------------------