Skip to content

ci(github-action): update step-security/harden-runner action to v2.11.0 #405

ci(github-action): update step-security/harden-runner action to v2.11.0

ci(github-action): update step-security/harden-runner action to v2.11.0 #405

Workflow file for this run

# This workflow will build a .NET project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
name: Mutation Test
on:
pull_request:
branches: [ "main" ]
paths: [ ".github/workflows/mutation-test.yml", ".config/*.json" ]
workflow_dispatch:
schedule:
- cron: "0 3 * * 0"
env:
DOTNET_GENERATE_ASPNET_CERTIFICATE: false
DOTNET_NOLOGO: true
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
DOTNET_CLI_TELEMETRY_OPTOUT: true
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: 🛡️ Harden Runner
uses: step-security/harden-runner@4d991eb9b905ef189e4c376166672c3f2f230481 # v2.11.0
with:
disable-sudo: true
egress-policy: block
allowed-endpoints: >
*.azureedge.net:443
aka.ms:443
api.nuget.org:443
builds.dotnet.microsoft.com:443
ci.dot.net:443
dashboard.stryker-mutator.io:443
dc.services.visualstudio.com:443
github.com:443
auth.docker.io:443
production.cloudflare.docker.com:443
registry-1.docker.io:443
- name: 🛒 Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
fetch-depth: 0
- name: 🧰 Setup .NET
uses: actions/setup-dotnet@3951f0dfe7a07e2313ec93c75700083e2005cbab # v4.3.0
with:
dotnet-version: |
6.x
8.x
global-json-file: global.json
- name: 🗃️ Setup NuGet cache
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
with:
path: ~/.nuget/packages
key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
restore-keys: ${{ runner.os }}-nuget-
- name: 🧬 Stryker
run: |
dotnet tool restore
dotnet stryker -f .config/stryker-config.json -O StrykerOutput --dashboard-api-key ${{ secrets.STRYKER_DASHBOARD_API_KEY }} -v main
- name: 📤 Upload Mutation Report
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
with:
name: mutation-report
path: StrykerOutput/reports
- name: 📓 Mutation Test Summary
run: cat StrykerOutput/reports/mutation-report.md >> $GITHUB_STEP_SUMMARY