From 7c8195b6e8ecdd285a4b37932a4ef354d0f2f3ea Mon Sep 17 00:00:00 2001 From: Niels Dekker Date: Fri, 5 Dec 2025 13:00:38 +0100 Subject: [PATCH] COMP: Replace `main` with `master` in yml files of ".github\workflows" Addressed a GitHub Action CI error from "lint", saying: Error: Unable to resolve action `insightsoftwareconsortium/itkclangformatlinteraction@master`, unable to find version `master` - Following ITK pull request github.com/InsightSoftwareConsortium/ITK/pull/5426 "master to main" --- .github/workflows/apply-clang-format.yml | 2 +- .github/workflows/clang-format-linter.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/apply-clang-format.yml b/.github/workflows/apply-clang-format.yml index 657c9ed1..8d1497b3 100644 --- a/.github/workflows/apply-clang-format.yml +++ b/.github/workflows/apply-clang-format.yml @@ -10,6 +10,6 @@ jobs: steps: - uses: actions/checkout@v3 - - uses: InsightSoftwareConsortium/ITKApplyClangFormatAction@master + - uses: InsightSoftwareConsortium/ITKApplyClangFormatAction@main with: github-token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/clang-format-linter.yml b/.github/workflows/clang-format-linter.yml index 9cbc29e6..100f0229 100644 --- a/.github/workflows/clang-format-linter.yml +++ b/.github/workflows/clang-format-linter.yml @@ -10,4 +10,4 @@ jobs: - uses: actions/checkout@v3 with: fetch-depth: 1 - - uses: InsightSoftwareConsortium/ITKClangFormatLinterAction@master + - uses: InsightSoftwareConsortium/ITKClangFormatLinterAction@main