diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index b26bbec..5e6c1b3 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Cache uses: actions/cache@v4 diff --git a/.github/workflows/bump-version.yml b/.github/workflows/bump-version.yml index 296ba3d..ea8e3b9 100644 --- a/.github/workflows/bump-version.yml +++ b/.github/workflows/bump-version.yml @@ -11,7 +11,7 @@ jobs: permissions: contents: write steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: ref: ${{ github.event.pull_request.merge_commit_sha }} fetch-depth: '0' diff --git a/.github/workflows/code-scanning.yml b/.github/workflows/code-scanning.yml index fec7c54..c221754 100644 --- a/.github/workflows/code-scanning.yml +++ b/.github/workflows/code-scanning.yml @@ -14,7 +14,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Install .NET SDK uses: actions/setup-dotnet@v4 diff --git a/.github/workflows/release-preview.yml b/.github/workflows/release-preview.yml index c101eb8..3da8a55 100644 --- a/.github/workflows/release-preview.yml +++ b/.github/workflows/release-preview.yml @@ -13,7 +13,7 @@ jobs: timeout-minutes: 15 steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 0 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 54589d5..14079f1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -11,7 +11,7 @@ jobs: timeout-minutes: 15 steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 0 diff --git a/.github/workflows/update-settings.yml b/.github/workflows/update-settings.yml index ffe8bfc..011b1ac 100644 --- a/.github/workflows/update-settings.yml +++ b/.github/workflows/update-settings.yml @@ -16,7 +16,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 # If this is a PR, dry-run the PR and watch for errors - name: Dry-run settings in the PR @@ -30,7 +30,7 @@ jobs: # Explicitly checkout main branch to ensure production settings are reset - name: Switch to main for production settings if: github.event_name == 'pull_request' - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: ref: main