Skip to content

Commit

Permalink
Bump actions/checkout from 3 to 4
Browse files Browse the repository at this point in the history
  • Loading branch information
file-sync-app[bot] committed Sep 10, 2023
1 parent 3e2b797 commit 125c495
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
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Check and output correct matrix
id: output_data
run: |
Expand Down Expand Up @@ -44,7 +44,7 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install Swift
uses: swift-actions/setup-swift@v1.24.0
- name: Run tests
Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install Swift
uses: swift-actions/setup-swift@v1.24.0
- name: Install SwiftLint
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: macOS-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install Jazzy
run: sudo gem install jazzy
- name: Generate documentation
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/label-sync.yml
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
- 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
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@v3
uses: actions/checkout@v4
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: swift-actions/setup-swift@v1.24.0
- name: Checkout swift-dependency-updater
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: Nef10/swift-dependency-updater
path: swift-dependency-updater
Expand Down

0 comments on commit 125c495

Please sign in to comment.