From 6bba47c57d568b463f0ed7077bd17b9d5b840494 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 19 Oct 2023 10:03:25 +0000 Subject: [PATCH] chore(deps): update actions/checkout action to v4 --- .github/workflows/ci.yml | 2 +- .github/workflows/release.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8348831..3de6325 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest name: Build & Test Code steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set version suffix for main branch uses: allenevans/set-env@v2.2.0 with: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0b308b0..00a798c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,7 +13,7 @@ jobs: name: Verify App runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Run Unit Tests run: dotnet test src/Promitor.Parsers.Prometheus.Tests/Promitor.Parsers.Prometheus.Tests.csproj push_nuget_to_ghpr: @@ -21,7 +21,7 @@ jobs: runs-on: ubuntu-latest needs: [verify] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Get version from release tag uses: mad9000/actions-find-and-replace-string@1 if: ${{ github.event_name == 'release' }}