From 71bb7b8e41c677276bcbae2fd0e1d833d6de5cdb Mon Sep 17 00:00:00 2001 From: Sebastien Bacher Date: Fri, 24 Jan 2025 21:47:50 +0100 Subject: [PATCH] Update the checkout action to the current version Fixes issue #752 --- README.md | 4 ++-- action.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index d5a2ef6..0b35a71 100644 --- a/README.md +++ b/README.md @@ -106,7 +106,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout this repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Run desktop-snaps action uses: ubuntu/desktop-snaps@add-action with: @@ -129,7 +129,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout this repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Run desktop-snaps action uses: ubuntu/desktop-snaps@stable with: diff --git a/action.yml b/action.yml index e4c8749..f7535d7 100644 --- a/action.yml +++ b/action.yml @@ -44,7 +44,7 @@ runs: steps: # Step to checkout the desktop-snaps repo so that we can run updatesnapyaml.py. We need to define a folder called desktop-snaps to avoid the checkout overwriting the other repo's checkout which comes first in the other repo's workflow - name: checkout desktop-snaps repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: repository: 'ubuntu/desktop-snaps' ref: stable