Skip to content

Commit

Permalink
Merge pull request #141 from 4ms/lennart_wifi_start
Browse files Browse the repository at this point in the history
Add checkout token for CI workflows
  • Loading branch information
danngreen authored Oct 19, 2023
2 parents 870a3d5 + 88cdb86 commit 879a7ca
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build_simulator.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,10 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: 'recursive'
token: ${{ secrets.CHECKOUT_TOKEN }}

- name: Install mac dependencies
if: matrix.os.os == 'macos'
Expand Down
12 changes: 8 additions & 4 deletions .github/workflows/build_vcv_plugin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,10 @@ jobs:
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: recursive
token: ${{ secrets.CHECKOUT_TOKEN }}
- name: Build plugin
run: |
export PLUGIN_DIR=$GITHUB_WORKSPACE/vcv
Expand All @@ -79,9 +80,10 @@ jobs:
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: recursive
token: ${{ secrets.CHECKOUT_TOKEN }}
- name: Build plugin
run: |
export PLUGIN_DIR=$GITHUB_WORKSPACE/vcv
Expand All @@ -100,9 +102,10 @@ jobs:
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: recursive
token: ${{ secrets.CHECKOUT_TOKEN }}
- name: Get Rack-SDK
run: |
pushd $HOME
Expand All @@ -128,9 +131,10 @@ jobs:
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: recursive
token: ${{ secrets.CHECKOUT_TOKEN }}
- name: Get Rack-SDK
run: |
pushd $HOME
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/run_vcv_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,10 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: 'recursive'
token: ${{ secrets.CHECKOUT_TOKEN }}

- name: Install windows dependencies (MSYS2)
if: matrix.os.os =='windows'
Expand Down

0 comments on commit 879a7ca

Please sign in to comment.