From 292da3a296546c52a8874c0b06c7bd50037af3dd Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 25 Apr 2024 21:19:47 +0000 Subject: [PATCH] build(deps): update actions/checkout action to v4 Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/pre-release.yml | 4 ++-- .github/workflows/release.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pre-release.yml b/.github/workflows/pre-release.yml index 9eadb17..de6ea4d 100644 --- a/.github/workflows/pre-release.yml +++ b/.github/workflows/pre-release.yml @@ -9,7 +9,7 @@ jobs: runs-on: ${{ matrix.platform }} steps: - name: Checkout code - uses: actions/checkout@v3.0.0 + uses: actions/checkout@v4.1.3 - name: Run tests run: echo "No tests configured yet" @@ -24,7 +24,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v3.0.0 + uses: actions/checkout@v4.1.3 - name: Add release assets env: RELEASE_TAG: ${{ needs.pre-release.outputs.RELEASE_TAG }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a83d712..5658d9c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -9,7 +9,7 @@ jobs: runs-on: ${{ matrix.platform }} steps: - name: Checkout code - uses: actions/checkout@v3.0.0 + uses: actions/checkout@v4.1.3 - name: Run tests run: echo "No tests configured yet" @@ -24,7 +24,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v3.0.0 + uses: actions/checkout@v4.1.3 - name: Add release assets env: RELEASE_TAG: ${{ needs.release.outputs.RELEASE_TAG }}