Skip to content

Commit

Permalink
Bump actions/checkout from 2 to 3
Browse files Browse the repository at this point in the history
  • Loading branch information
file-sync-app[bot] committed Mar 5, 2022
1 parent bb28784 commit 16860dc
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Check and output correct matrix
id: output_data
run: |
Expand All @@ -39,7 +39,7 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Install Swift
uses: fwal/setup-swift@v1.13.1
- name: Run tests
Expand Down Expand Up @@ -75,7 +75,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Run SwiftLint --strict
uses: norio-nomura/action-swiftlint@3.2.1
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: macOS-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Install Jazzy
run: sudo gem install jazzy
- name: Generate documentation
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/label-sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Update Labels
uses: micnncim/action-label-syncer@v1.3.0
env:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/swift-dependency-updater.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@ jobs:
app_id: ${{ secrets.APP_ID }} # These two secrets need to be added
private_key: ${{ secrets.APP_PRIVATE_KEY }} # to your repository settings
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
path: repo
fetch-depth: 0 # Fetching the whole repo is required to check if branches already exist
token: ${{ steps.generate_token.outputs.token }} # Checkout repo pre-configured with right token
- name: Install Swift
uses: fwal/setup-swift@v1.13.1
- name: Checkout swift-dependency-updater
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
repository: Nef10/swift-dependency-updater
path: swift-dependency-updater
Expand Down

0 comments on commit 16860dc

Please sign in to comment.