Skip to content

build: bump step-security/harden-runner from 2.13.1 to 2.13.2 #987

build: bump step-security/harden-runner from 2.13.1 to 2.13.2

build: bump step-security/harden-runner from 2.13.1 to 2.13.2 #987

Workflow file for this run

name: Pre-Release Tests
on:
pull_request:
branches:
- main
workflow_dispatch: {}
permissions:
contents: read
jobs:
release-tests:
name: Pre-Release Tests
runs-on: ubuntu-latest
steps:
- name: Harden Runner
uses: step-security/harden-runner@95d9a5deda9de15063e7595e9719c11c38c90ae2 # v2.13.2
with:
egress-policy: audit
- name: Checkout Repo
id: checkout
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
fetch-depth: 0
- name: Pester Tests
id: pester
if: contains(github.head_ref, 'release')
uses: azure/powershell@53dd145408794f7e80f97cfcca04155c85234709 # v2.0.0
with:
inlineScript: |
Import-Module Pester -Force
$pesterConfiguration = @{
Run = @{
Container = New-PesterContainer -Path "./.github/pester/release.tests.ps1"
PassThru = $true
}
Output = @{
Verbosity = 'Detailed'
}
}
$result = Invoke-Pester -Configuration $pesterConfiguration
exit $result.FailedCount
azPSVersion: "latest"