Skip to content

Commit

Permalink
Merge branch 'sha256-default' of https://github.com/vilit1/azure-iot-…
Browse files Browse the repository at this point in the history
…cli-extension into sha256-default
  • Loading branch information
vilit1 committed Aug 22, 2024
2 parents 6ce2db4 + e79a5e9 commit 514aebb
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: "[auto] CodeQL-Nightly"

permissions: {}
on:
schedule:
- cron: '0 6 * * *'
Expand All @@ -21,9 +21,9 @@ jobs:

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
uses: github/codeql-action/init@v3
with:
languages: python

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
uses: github/codeql-action/analyze@v3
6 changes: 6 additions & 0 deletions .github/workflows/release_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@ on:
type: boolean
required: false
default: false
run_int_tests:
description: Run integration test step
type: boolean
required: false
default: true
jobs:
security:
permissions:
Expand All @@ -36,6 +41,7 @@ jobs:
continue-on-error: ${{ github.event.inputs.continue-on-error == 'true' }}
int_test:
needs: [build]
if: always() && !cancelled() && !failure() && (github.event.inputs.run_int_tests == 'true')
uses: ./.github/workflows/trigger_ado_int_tests.yml
secrets: inherit
approval:
Expand Down
10 changes: 8 additions & 2 deletions .github/workflows/security_checks.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,21 @@
name: "[auto] Security Checks"
on:
schedule:
- cron: '0 6 * * *'
push:
branches:
- dev
- feature/*
workflow_call:
inputs:
continue-on-error:
type: boolean
required: false
default: false

permissions: {}
jobs:
sdl:
continue-on-error: ${{ inputs.continue-on-error }}
continue-on-error: ${{ inputs.continue-on-error || false }}
name: SDL Compliance Checks
runs-on: windows-latest
permissions:
Expand Down

0 comments on commit 514aebb

Please sign in to comment.