Skip to content

Commit

Permalink
Merge pull request #149 from ikesyo/update-actions-checkout
Browse files Browse the repository at this point in the history
Update actions/checkout to v4
  • Loading branch information
giginet authored Oct 9, 2024
2 parents 8eb442f + 1d5f264 commit d972909
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
DocC:
runs-on: macos-14
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Build DocC
run: |
swift package --allow-writing-to-directory ./docs generate-documentation \
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
DEVELOPER_DIR: "/Applications/Xcode_${{ matrix.xcode_version }}.app/Contents/Developer"
runs-on: macos-14
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Install SwiftLint
run: brew install swiftlint
- name: SwiftLint
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
name: Build and Upload Artifact Bundle
runs-on: macos-14
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Resolve Dependencies
run: |
swift package resolve
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
steps:
- name: Get swift version
run: swift --version
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Run Tests
run: |
swift test --verbose
Expand Down

0 comments on commit d972909

Please sign in to comment.