Skip to content

Commit 6ec5174

Browse files
authored
Merge pull request #1444 from Firefishy/gh-action-use-replacement-ruby
Gh action use replacement ruby
2 parents 55a5fd5 + 35d1a71 commit 6ec5174

File tree

7 files changed

+16
-16
lines changed

7 files changed

+16
-16
lines changed

.github/workflows/build_aarch64.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@ jobs:
2424
uses: actions/setup-python@v2
2525

2626
- name: Checkout TinyUSB
27-
uses: actions/checkout@v2
27+
uses: actions/checkout@v3
2828

2929
- name: Checkout common submodules in lib
3030
run: git submodule update --init lib/FreeRTOS-Kernel lib/lwip lib/sct_neopixel
3131

3232
- name: Checkout hathach/linkermap
33-
uses: actions/checkout@v2
33+
uses: actions/checkout@v3
3434
with:
3535
repository: hathach/linkermap
3636
path: linkermap

.github/workflows/build_arm.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: Setup Ruby
18-
uses: actions/setup-ruby@v1
18+
uses: ruby/setup-ruby@v1
1919
with:
2020
ruby-version: '2.7'
2121

2222
- name: Checkout TinyUSB
23-
uses: actions/checkout@v2
23+
uses: actions/checkout@v3
2424

2525
- name: Unit Tests
2626
run: |
@@ -66,13 +66,13 @@ jobs:
6666
uses: actions/setup-python@v2
6767

6868
- name: Checkout TinyUSB
69-
uses: actions/checkout@v2
69+
uses: actions/checkout@v3
7070

7171
- name: Checkout common submodules in lib
7272
run: git submodule update --init lib/FreeRTOS-Kernel lib/lwip lib/sct_neopixel
7373

7474
- name: Checkout hathach/linkermap
75-
uses: actions/checkout@v2
75+
uses: actions/checkout@v3
7676
with:
7777
repository: hathach/linkermap
7878
path: linkermap
@@ -135,7 +135,7 @@ jobs:
135135
uses: actions/setup-python@v2
136136

137137
- name: Checkout TinyUSB
138-
uses: actions/checkout@v2
138+
uses: actions/checkout@v3
139139

140140
- name: Checkout common submodules in lib
141141
run: git submodule update --init lib/FreeRTOS-Kernel lib/lwip

.github/workflows/build_esp.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ jobs:
2929
run: docker pull espressif/idf:latest
3030

3131
- name: Checkout TinyUSB
32-
uses: actions/checkout@v2
32+
uses: actions/checkout@v3
3333

3434
- name: Checkout hathach/linkermap
35-
uses: actions/checkout@v2
35+
uses: actions/checkout@v3
3636
with:
3737
repository: hathach/linkermap
3838
path: linkermap

.github/workflows/build_msp430.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ jobs:
2121
uses: actions/setup-python@v2
2222

2323
- name: Checkout TinyUSB
24-
uses: actions/checkout@v2
24+
uses: actions/checkout@v3
2525

2626
- name: Checkout common submodules in lib
2727
run: git submodule update --init lib/FreeRTOS-Kernel lib/lwip
2828

2929
- name: Checkout hathach/linkermap
30-
uses: actions/checkout@v2
30+
uses: actions/checkout@v3
3131
with:
3232
repository: hathach/linkermap
3333
path: linkermap

.github/workflows/build_renesas.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ jobs:
2121
uses: actions/setup-python@v2
2222

2323
- name: Checkout TinyUSB
24-
uses: actions/checkout@v2
24+
uses: actions/checkout@v3
2525

2626
- name: Checkout common submodules in lib
2727
run: git submodule update --init lib/FreeRTOS-Kernel lib/lwip
2828

2929
- name: Checkout hathach/linkermap
30-
uses: actions/checkout@v2
30+
uses: actions/checkout@v3
3131
with:
3232
repository: hathach/linkermap
3333
path: linkermap

.github/workflows/build_riscv.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@ jobs:
2222
uses: actions/setup-python@v2
2323

2424
- name: Checkout TinyUSB
25-
uses: actions/checkout@v2
25+
uses: actions/checkout@v3
2626

2727
- name: Checkout common submodules in lib
2828
run: git submodule update --init lib/FreeRTOS-Kernel lib/lwip
2929

3030
- name: Checkout hathach/linkermap
31-
uses: actions/checkout@v2
31+
uses: actions/checkout@v3
3232
with:
3333
repository: hathach/linkermap
3434
path: linkermap

.github/workflows/trigger.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: ubuntu-latest
2323
steps:
2424
- name: Checkout code
25-
uses: actions/checkout@v2
25+
uses: actions/checkout@v3
2626

2727
- name: Push to tinyusb_src
2828
run: |

0 commit comments

Comments
 (0)