diff --git a/.github/workflows/linting_extension_base.yml b/.github/workflows/linting_extension_base.yml index 4675fcf..edb051c 100644 --- a/.github/workflows/linting_extension_base.yml +++ b/.github/workflows/linting_extension_base.yml @@ -78,30 +78,3 @@ jobs: PYTHON_ISORT_CONFIG_FILE: .isort.cfg FILTER_REGEX_INCLUDE: azurefunctions-extensions-base/.* DEFAULT_BRANCH: origin/dev - - send-notification: - runs-on: ubuntu-latest - needs: build - if: always() - steps: - - name: Notify dedicated teams channel on failure - if: ${{ always() && needs.build.result == 'failure' }} - uses: jdcargile/ms-teams-notification@v1.4 - with: - github-token: ${{ github.token }} - ms-teams-webhook-uri: ${{ secrets.MS_TEAMS_WEBHOOK_URI }} - notification-summary: "Python Extension Lint azurefunctions-extensions-base Failed" - notification-color: FF0000 - timezone: America/Denver - verbose-logging: false - - - name: Notify dedicated teams channel on success - if: ${{ always() && needs.build.result == 'success' }} - uses: jdcargile/ms-teams-notification@v1.4 - with: - github-token: ${{ github.token }} - ms-teams-webhook-uri: ${{ secrets.MS_TEAMS_WEBHOOK_URI }} - notification-summary: "Python Extension Lint azurefunctions-extensions-base Passed" - notification-color: 008000 - timezone: America/Denver - verbose-logging: false \ No newline at end of file diff --git a/.github/workflows/linting_extension_blob.yml b/.github/workflows/linting_extension_blob.yml index bbe9ab3..28892a3 100644 --- a/.github/workflows/linting_extension_blob.yml +++ b/.github/workflows/linting_extension_blob.yml @@ -78,30 +78,3 @@ jobs: PYTHON_ISORT_CONFIG_FILE: .isort.cfg FILTER_REGEX_INCLUDE: azurefunctions-extensions-bindings-blob/* DEFAULT_BRANCH: origin/dev - - send-notification: - runs-on: ubuntu-latest - needs: build - if: always() - steps: - - name: Notify dedicated teams channel on failure - if: ${{ always() && needs.build.result == 'failure' }} - uses: jdcargile/ms-teams-notification@v1.4 - with: - github-token: ${{ github.token }} - ms-teams-webhook-uri: ${{ secrets.MS_TEAMS_WEBHOOK_URI }} - notification-summary: "Python Extension Lint azurefunctions-extensions-bindings-blob Failed" - notification-color: FF0000 - timezone: America/Denver - verbose-logging: false - - - name: Notify dedicated teams channel on success - if: ${{ always() && needs.build.result == 'success' }} - uses: jdcargile/ms-teams-notification@v1.4 - with: - github-token: ${{ github.token }} - ms-teams-webhook-uri: ${{ secrets.MS_TEAMS_WEBHOOK_URI }} - notification-summary: "Python Extension Lint azurefunctions-extensions-bindings-blob Passed" - notification-color: 008000 - timezone: America/Denver - verbose-logging: false \ No newline at end of file diff --git a/.github/workflows/linting_extension_fastapi.yml b/.github/workflows/linting_extension_fastapi.yml index 2b0ebaf..2e770af 100644 --- a/.github/workflows/linting_extension_fastapi.yml +++ b/.github/workflows/linting_extension_fastapi.yml @@ -78,30 +78,3 @@ jobs: PYTHON_ISORT_CONFIG_FILE: .isort.cfg FILTER_REGEX_INCLUDE: azurefunctions-extensions-http-fastapi/* DEFAULT_BRANCH: origin/dev - - send-notification: - runs-on: ubuntu-latest - needs: build - if: always() - steps: - - name: Notify dedicated teams channel on failure - if: ${{ always() && needs.build.result == 'failure' }} - uses: jdcargile/ms-teams-notification@v1.4 - with: - github-token: ${{ github.token }} - ms-teams-webhook-uri: ${{ secrets.MS_TEAMS_WEBHOOK_URI }} - notification-summary: "Python Extension Lint azurefunctions-extensions-http-fastapi Failed" - notification-color: FF0000 - timezone: America/Denver - verbose-logging: false - - - name: Notify dedicated teams channel on success - if: ${{ always() && needs.build.result == 'success' }} - uses: jdcargile/ms-teams-notification@v1.4 - with: - github-token: ${{ github.token }} - ms-teams-webhook-uri: ${{ secrets.MS_TEAMS_WEBHOOK_URI }} - notification-summary: "Python Extension Lint azurefunctions-extensions-http-fastapi Passed" - notification-color: 008000 - timezone: America/Denver - verbose-logging: false \ No newline at end of file diff --git a/azurefunctions-extensions-bindings-blob/pyproject.toml b/azurefunctions-extensions-bindings-blob/pyproject.toml index c9073f2..632ec34 100644 --- a/azurefunctions-extensions-bindings-blob/pyproject.toml +++ b/azurefunctions-extensions-bindings-blob/pyproject.toml @@ -25,7 +25,7 @@ classifiers= [ ] dependencies = [ 'azurefunctions-extensions-base', - 'azure-storage-blob==12.20.0' + 'azure-storage-blob==12.23.1' ] [project.optional-dependencies]