Skip to content

Commit

Permalink
⬆️ Upgrade actions/checkout (#200)
Browse files Browse the repository at this point in the history
  • Loading branch information
YunYouJun authored Dec 14, 2022
1 parent d1a6f90 commit 1d46c7e
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/helpers/workflows.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
runs-on: ${config.runner || DEFAULT_RUNNER}
steps:
- name: Checkout
uses: actions/checkout@v2.3.3
uses: actions/checkout@v3
with:
ref: \${{ github.head_ref }}
token: \${{ secrets.GH_PAT }}
Expand Down Expand Up @@ -84,7 +84,7 @@ jobs:
runs-on: ${config.runner || DEFAULT_RUNNER}
steps:
- name: Checkout
uses: actions/checkout@v2.3.3
uses: actions/checkout@v3
with:
ref: \${{ github.head_ref }}
token: \${{ secrets.GH_PAT }}
Expand Down Expand Up @@ -119,7 +119,7 @@ jobs:
runs-on: ${config.runner || DEFAULT_RUNNER}
steps:
- name: Checkout
uses: actions/checkout@v2.3.3
uses: actions/checkout@v3
with:
ref: \${{ github.head_ref }}
token: \${{ secrets.GH_PAT }}
Expand Down Expand Up @@ -186,7 +186,7 @@ jobs:
if: "!contains(github.event.head_commit.message, '[skip ci]')"
steps:
- name: Checkout
uses: actions/checkout@v2.3.3
uses: actions/checkout@v3
with:
ref: \${{ github.head_ref }}
token: \${{ secrets.GH_PAT }}
Expand Down Expand Up @@ -227,7 +227,7 @@ jobs:
runs-on: ${config.runner || DEFAULT_RUNNER}
steps:
- name: Checkout
uses: actions/checkout@v2.3.3
uses: actions/checkout@v3
with:
ref: \${{ github.head_ref }}
token: \${{ secrets.GH_PAT }}
Expand Down Expand Up @@ -259,7 +259,7 @@ jobs:
runs-on: ${config.runner || DEFAULT_RUNNER}
steps:
- name: Checkout
uses: actions/checkout@v2.3.3
uses: actions/checkout@v3
with:
ref: \${{ github.head_ref }}
token: \${{ secrets.GH_PAT }}
Expand Down Expand Up @@ -291,7 +291,7 @@ jobs:
runs-on: ${config.runner || DEFAULT_RUNNER}
steps:
- name: Checkout
uses: actions/checkout@v2.3.3
uses: actions/checkout@v3
with:
ref: \${{ github.head_ref }}
token: \${{ secrets.GH_PAT }}
Expand Down Expand Up @@ -321,7 +321,7 @@ jobs:
runs-on: ${config.runner || DEFAULT_RUNNER}
steps:
- name: Checkout
uses: actions/checkout@v2.3.3
uses: actions/checkout@v3
with:
ref: \${{ github.head_ref }}
token: \${{ secrets.GH_PAT }}
Expand Down

0 comments on commit 1d46c7e

Please sign in to comment.