Skip to content

Bump actions/checkout from 6.0.3 to 7.0.0 in the dependencies group across 1 directory #74

Bump actions/checkout from 6.0.3 to 7.0.0 in the dependencies group across 1 directory

Bump actions/checkout from 6.0.3 to 7.0.0 in the dependencies group across 1 directory #74

Workflow file for this run

name: "CI - Test Templates"
on:
pull_request:
jobs:
detect-changes:
runs-on: ubuntu-latest
outputs:
templates: ${{ steps.filter.outputs.changes }}
steps:
- uses: dorny/paths-filter@fbd0ab8f3e69293af611ebaee6363fc25e6d187d # v4.0.1
id: filter
with:
filters: |
azure-functions-dotnet: ./**/azure-functions-dotnet/**
azure-functions-go: ./**/azure-functions-go/**
azure-functions-java: ./**/azure-functions-java/**
azure-functions-node: ./**/azure-functions-node/**
azure-functions-powershell: ./**/azure-functions-powershell/**
azure-functions-python: ./**/azure-functions-python/**
test:
needs: [detect-changes]
runs-on: ${{ matrix.os }}
continue-on-error: true
strategy:
matrix:
templates: ${{ fromJSON(needs.detect-changes.outputs.templates) }}
os: [ubuntu-24.04, ubuntu-24.04-arm]
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- name: Smoke test for '${{ matrix.templates }}'
id: smoke_test
uses: ./.github/actions/smoke-test
with:
template: "${{ matrix.templates }}"