diff --git a/.github/workflows/branch-hotfix.yml b/.github/workflows/branch-hotfix.yml index 00bc8863..341e25fd 100644 --- a/.github/workflows/branch-hotfix.yml +++ b/.github/workflows/branch-hotfix.yml @@ -28,7 +28,7 @@ jobs: needs: [get-version] runs-on: ubuntu-latest steps: - - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5 + - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v5 with: ref: ${{ github.head_ref }} - name: Increment Version diff --git a/.github/workflows/branch-master.yml b/.github/workflows/branch-master.yml index ede64245..1a67ede9 100644 --- a/.github/workflows/branch-master.yml +++ b/.github/workflows/branch-master.yml @@ -39,7 +39,7 @@ jobs: needs: [ publish-to-nuget ] runs-on: ubuntu-latest steps: - - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5 + - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v5 - name: Create Pull Request env: GH_TOKEN: ${{ secrets.CREATE_PR_TOKEN }} diff --git a/.github/workflows/completed-feature-workflow.yml b/.github/workflows/completed-feature-workflow.yml index 86da5a5b..cba11837 100644 --- a/.github/workflows/completed-feature-workflow.yml +++ b/.github/workflows/completed-feature-workflow.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repo - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5 + uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v5 - name: Extract Issue Number env: GITHUB_PULL_REQUEST_HEAD_REF: ${{ github.event.pull_request.head.ref }} diff --git a/.github/workflows/draft-new-release.yml b/.github/workflows/draft-new-release.yml index 2cbf0cf8..23710bac 100644 --- a/.github/workflows/draft-new-release.yml +++ b/.github/workflows/draft-new-release.yml @@ -19,7 +19,7 @@ jobs: name: "Draft a new release" runs-on: ubuntu-latest steps: - - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5 + - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v5 - name: Create release branch run: git checkout -b release/${{ github.event.inputs.major_version }}.${{ github.event.inputs.minor_version }}.${{ github.event.inputs.patch_version }}.${{ github.run_number }} diff --git a/.github/workflows/in-progress-feature-workflow.yml b/.github/workflows/in-progress-feature-workflow.yml index 1edf3e39..b9184a74 100644 --- a/.github/workflows/in-progress-feature-workflow.yml +++ b/.github/workflows/in-progress-feature-workflow.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repo - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5 + uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v5 - name: Extract Issue Number shell: bash run: echo "##[set-output name=issue;]$(echo ${GITHUB_REF#refs/heads/} | sed 's|[^0-9]||g')" diff --git a/.github/workflows/label-configurer.yml b/.github/workflows/label-configurer.yml index 2e8fd1ba..fbf72997 100644 --- a/.github/workflows/label-configurer.yml +++ b/.github/workflows/label-configurer.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5 + uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v5 - name: Run Labeler uses: crazy-max/ghaction-github-labeler@24d110aa46a59976b8a7f35518cb7f14f434c916 # v5 with: diff --git a/.github/workflows/step-build.yml b/.github/workflows/step-build.yml index 98d3c66f..4090a5c2 100644 --- a/.github/workflows/step-build.yml +++ b/.github/workflows/step-build.yml @@ -18,7 +18,7 @@ jobs: run: | echo "Branch: ${{ inputs.checkout-ref }}" - name: Checkout - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5 + uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v5 with: ref: ${{ inputs.checkout-ref }} - name: Setup .NET Core diff --git a/.github/workflows/step-mutation-testing.yml b/.github/workflows/step-mutation-testing.yml index 3d7f5f23..95232eb9 100644 --- a/.github/workflows/step-mutation-testing.yml +++ b/.github/workflows/step-mutation-testing.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5 + uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v5 with: fetch-depth: 0 - name: Setup .NET Core diff --git a/.github/workflows/step-tag-release.yml b/.github/workflows/step-tag-release.yml index 9eb0c4f1..49497f7c 100644 --- a/.github/workflows/step-tag-release.yml +++ b/.github/workflows/step-tag-release.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5 + uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v5 - name: Create tag env: VERSION: ${{ inputs.version }} diff --git a/.github/workflows/step-version.yml b/.github/workflows/step-version.yml index 90d8b3b2..d7dc35bf 100644 --- a/.github/workflows/step-version.yml +++ b/.github/workflows/step-version.yml @@ -39,7 +39,7 @@ jobs: build: ${{ steps.set-version.outputs.build }} steps: - name: Get Code - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5 + uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v5 - name: Get Version id: get-version uses: Afterlife-Guide/SemVer.Action@288a02559813fbd67393b5bd001cd796f1665905 # 1.3.0.15