Skip to content

Commit

Permalink
use v4 for github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
mmroz committed Dec 3, 2024
1 parent ec9941c commit 7b7dbce
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ jobs:
workspace: Afterpay.xcworkspace

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Cache Mint Packages
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: /usr/local/lib/mint
key: ${{ runner.os }}-mint-${{ hashFiles('Mintfile') }}
Expand Down Expand Up @@ -62,13 +62,13 @@ jobs:
-destination '${{ env.destination }}'
- name: Checkout Example Server
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: afterpay/sdk-example-server
path: ./example-server

- name: Setup Example Server
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 16

Expand Down Expand Up @@ -98,7 +98,7 @@ jobs:
- name: Upload UI test artifacts
if: ${{ always() }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: xcresults
path: /Users/runner/Library/Developer/Xcode/DerivedData/Afterpay-*/Logs/Test/*
Expand All @@ -108,7 +108,7 @@ jobs:
runs-on: macos-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

Expand All @@ -129,7 +129,7 @@ jobs:
workspace: .swiftpm/xcode/package.xcworkspace

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Validate Swift Package
run: |
Expand Down

0 comments on commit 7b7dbce

Please sign in to comment.