Skip to content

Commit

Permalink
Bump actions
Browse files Browse the repository at this point in the history
  • Loading branch information
uhooi authored Dec 1, 2022
1 parent def64c3 commit 5aa17c0
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ jobs:
runs-on: macos-12
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Pull cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: .build
key: ${{ runner.os }}spm${{ hashFiles('**/Package.resolved') }}
Expand All @@ -30,9 +30,9 @@ jobs:
needs: build-rswift
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Download build
uses: actions/download-artifact@v1
uses: actions/download-artifact@v3
with:
name: rswift-dev
- name: Put build into place
Expand All @@ -41,7 +41,7 @@ jobs:
mv rswift-dev/rswift .build/release/rswift
chmod +x .build/release/rswift
- name: Pull cache
uses: actions/cache@v2
uses: actions/cache@v3
id: podcache-ios
with:
path: Examples/ResourceApp/Pods
Expand All @@ -60,9 +60,9 @@ jobs:
needs: build-rswift
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Download build
uses: actions/download-artifact@v1
uses: actions/download-artifact@v3
with:
name: rswift-dev
- name: Put build into place
Expand All @@ -79,9 +79,9 @@ jobs:
needs: build-rswift
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Download build
uses: actions/download-artifact@v1
uses: actions/download-artifact@v3
with:
name: rswift-dev
- name: Put build into place
Expand All @@ -97,9 +97,9 @@ jobs:
needs: build-rswift
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Download build
uses: actions/download-artifact@v1
uses: actions/download-artifact@v3
with:
name: rswift-dev
- name: Put build into place
Expand All @@ -115,9 +115,9 @@ jobs:
runs-on: macos-12
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Pull cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: .build
key: ${{ runner.os }}spm${{ hashFiles('**/Package.resolved') }}
Expand All @@ -129,7 +129,7 @@ jobs:
- name: Build
run: swift build -v -c release
- name: Store artifact
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v3
with:
name: rswift-dev
path: .build/release/rswift

0 comments on commit 5aa17c0

Please sign in to comment.