From e17fbde9b7262245874db829f49713717adeee27 Mon Sep 17 00:00:00 2001 From: Stefan Freitag Date: Thu, 25 Apr 2024 20:41:53 +0200 Subject: [PATCH] Update actions/checkout to v4 in workflow files. Changed the version of actions/checkout from v3 to v4 in two workflow files. --- .github/workflows/tf-module-actions.yml | 2 +- .github/workflows/tf-module-release.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tf-module-actions.yml b/.github/workflows/tf-module-actions.yml index fe39f1b..7163bc4 100644 --- a/.github/workflows/tf-module-actions.yml +++ b/.github/workflows/tf-module-actions.yml @@ -10,7 +10,7 @@ jobs: checks: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: ref: ${{ github.event.pull_request.head.ref }} - name: Render terraform docs inside the README.md and push changes back to PR branch diff --git a/.github/workflows/tf-module-release.yml b/.github/workflows/tf-module-release.yml index f54cc1f..29dcb53 100644 --- a/.github/workflows/tf-module-release.yml +++ b/.github/workflows/tf-module-release.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: persist-credentials: false fetch-depth: 0