From 5e5ddff0e3200b5474460bdf8302a6440171cd14 Mon Sep 17 00:00:00 2001 From: Rick Pasveer Date: Wed, 6 Aug 2025 10:11:27 +0200 Subject: [PATCH] Update GitHub Actions to fix deprecation warnings - Update actions/checkout from v2 to v4 - Update actions/cache from v2 to v4 --- .github/workflows/swift.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/swift.yml b/.github/workflows/swift.yml index 1281416..c2bc3bd 100644 --- a/.github/workflows/swift.yml +++ b/.github/workflows/swift.yml @@ -22,8 +22,8 @@ jobs: - uses: maxim-lobanov/setup-xcode@v1 with: xcode-version: latest-stable - - uses: actions/checkout@v2 - - uses: actions/cache@v2 + - uses: actions/checkout@v4 + - uses: actions/cache@v4 with: path: /Users/runner/Library/Developer/Xcode/DerivedData key: ${{ runner.os }}-spm-examples-${{ hashFiles('**/Package.resolved') }}