From 373ea0b331be4c44136554ccf679bcc009142a7c Mon Sep 17 00:00:00 2001 From: Chris Hambridge Date: Wed, 8 May 2024 09:03:28 -0400 Subject: [PATCH] Update check-image.yml (#79) Actions are failing due to EOL Node version. Updating action versions. --- .github/workflows/check-image.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/check-image.yml b/.github/workflows/check-image.yml index b4fcd0f..32e3d2c 100644 --- a/.github/workflows/check-image.yml +++ b/.github/workflows/check-image.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install skopeo run: sudo apt-get install -y skopeo - name: Check change @@ -26,6 +26,6 @@ jobs: if [ $(git status --porcelain | wc -l) -eq "0" ]; then echo "No new changes"; else make bump-image-tag; fi git commit -m "chore(image): update and rebuild image" || echo "No new changes" - name: Create pull request - uses: peter-evans/create-pull-request@v4 + uses: peter-evans/create-pull-request@v6 with: title: 'chore(image): update base image'