Skip to content

Commit 1a2ac9b

Browse files
committed
use v3 of checkout action
1 parent 00b8236 commit 1a2ac9b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/build-documentation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: [self-hosted, macOS]
99
steps:
1010
- name: Checkout repository
11-
uses: actions/checkout@v1
11+
uses: actions/checkout@v3
1212
- name: Build Documentation
1313
run: exec ./.github/scripts/build-docc.sh
1414
- name: Init new repo in dist folder and commit generated files

.github/workflows/swiftlint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ jobs:
66
SwiftLint:
77
runs-on: [self-hosted, macOS]
88
steps:
9-
- uses: actions/checkout@v1
9+
- uses: actions/checkout@v3
1010
- name: GitHub Action for SwiftLint with --strict
1111
run: swiftlint --strict

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ jobs:
88
runs-on: [self-hosted, macOS]
99
steps:
1010
- name: Checkout repository
11-
uses: actions/checkout@v1
11+
uses: actions/checkout@v3
1212
- name: Testing Package
1313
run: exec ./.github/scripts/tests.sh arm

0 commit comments

Comments
 (0)