Skip to content

Commit f521e7b

Browse files
committed
update checkout action to v3
1 parent 58ba189 commit f521e7b

File tree

4 files changed

+4
-22
lines changed

4 files changed

+4
-22
lines changed

.github/workflows/CI-bump-build-number.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: [self-hosted, macOS]
88
steps:
99
- name: Checkout repository
10-
uses: actions/checkout@v2
10+
uses: actions/checkout@v3
1111

1212
- name: Bump Build Number
1313
run: |

.github/workflows/lint.yml

Lines changed: 1 addition & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -8,24 +8,6 @@ jobs:
88
SwiftLint:
99
runs-on: [self-hosted, macOS] # ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v1
11+
- uses: actions/checkout@v3
1212
- name: GitHub Action for SwiftLint
1313
run: swiftlint --strict
14-
15-
# Old version using `ubuntu-latest`
16-
# - name: Remove TODOs
17-
# run: exec ./.github/scripts/remove_todos.sh
18-
# - name: GitHub Action for SwiftLint
19-
# uses: norio-nomura/action-swiftlint@3.2.1
20-
# - name: GitHub Action for SwiftLint with --strict
21-
# uses: norio-nomura/action-swiftlint@3.2.1
22-
# with:
23-
# args: --strict
24-
# - name: GitHub Action for SwiftLint (Only files changed in the PR)
25-
# uses: norio-nomura/action-swiftlint@3.2.1
26-
# env:
27-
# DIFF_BASE: ${{ github.base_ref }}
28-
# - name: GitHub Action for SwiftLint (Different working directory)
29-
# uses: norio-nomura/action-swiftlint@3.2.1
30-
# env:
31-
# WORKING_DIRECTORY: Source

.github/workflows/pre-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: [self-hosted, macOS]
1111
steps:
1212
- name: Checkout repository
13-
uses: actions/checkout@v2
13+
uses: actions/checkout@v3
1414

1515
############################
1616
# Install Certificate

.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 App
1313
run: exec ./.github/scripts/test_app.sh arm

0 commit comments

Comments
 (0)