From a5d43ad36d09e91ac7bb07d0610fec483da3e85b Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 23 Jun 2024 22:55:56 +0000 Subject: [PATCH] Update actions/checkout action to v4 --- .github/workflows/cd.yml | 4 ++-- .github/workflows/ci.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 4414977..56b2686 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -12,7 +12,7 @@ jobs: matrix: ${{ steps.templates.outputs.matrix }} steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: List templates id: templates run: echo "matrix=$(ls templates/*.pkr.hcl | jq -R -s -c 'split("\n")[:-1]')" >> $GITHUB_OUTPUT @@ -25,7 +25,7 @@ jobs: template: ${{ fromJson(needs.list.outputs.matrix) }} steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup os run: sudo apt-get install qemu-user-static -y - name: Setup env diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2746e7e..b77150d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,7 @@ jobs: matrix: ${{ steps.templates.outputs.matrix }} steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: List templates id: templates run: echo "matrix=$(ls templates/*.pkr.hcl | jq -R -s -c 'split("\n")[:-1]')" >> $GITHUB_OUTPUT @@ -26,7 +26,7 @@ jobs: template: ${{ fromJson(needs.list.outputs.matrix) }} steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup os run: sudo apt-get install qemu-user-static -y - name: Setup env