Skip to content

Commit e7ba515

Browse files
committed
ci: prevent to use branch name
refer to latest release Signed-off-by: Frederic Pillon <[email protected]>
1 parent 2bf4e4d commit e7ba515

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

Diff for: .github/workflows/Arduino-build.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@ jobs:
3535
steps:
3636
# First of all, clone the repo using the checkout action.
3737
- name: Checkout
38-
uses: actions/checkout@main
38+
uses: actions/checkout@v4
3939

4040
- name: Compilation
4141
id: Compile
42-
uses: stm32duino/actions/compile-examples@main
42+
uses: stm32duino/actions/compile-examples@v1
4343
with:
4444
additional-url: 'https://github.com/stm32duino/BoardManagerFiles/raw/dev/package_stmicroelectronics_index.json'
4545

Diff for: .github/workflows/Cmake.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252

5353
steps:
5454
- name: Checkout
55-
uses: actions/checkout@main
55+
uses: actions/checkout@v4
5656

5757
- name: Get latest CMake and Ninja
5858
uses: lukka/get-cmake@latest

Diff for: .github/workflows/CodeSpell.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ jobs:
1414

1515
steps:
1616
- name: Checkout
17-
uses: actions/checkout@main
17+
uses: actions/checkout@v4
1818

1919
# See: https://github.com/codespell-project/actions-codespell/blob/master/README.md
2020
- name: Spell check
21-
uses: codespell-project/actions-codespell@master
21+
uses: codespell-project/actions-codespell@v2
2222
with:
2323
check_filenames: true
2424
check_hidden: true

Diff for: .github/workflows/MarkdwonLinksCheck.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
linkinator:
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/checkout@v3
18+
- uses: actions/checkout@v4
1919
- uses: JustinBeckwith/linkinator-action@v1
2020
with:
2121
paths: '*.md ./CI/**/*.md, ./variants/**/*.md, ./libraries/**/*.md'

Diff for: .github/workflows/arduino-lint.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313

1414
steps:
1515
- name: Checkout repository
16-
uses: actions/checkout@v3
16+
uses: actions/checkout@v4
1717

1818
- name: Arduino Lint
1919
uses: arduino/arduino-lint-action@v1

Diff for: .github/workflows/astyle.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,11 @@ jobs:
3131
steps:
3232
# First of all, clone the repo using the checkout action.
3333
- name: Checkout
34-
uses: actions/checkout@main
34+
uses: actions/checkout@v4
3535

3636
- name: Astyle check
3737
id: Astyle
38-
uses: stm32duino/actions/astyle-check@main
38+
uses: stm32duino/actions/astyle-check@v1
3939
with:
4040
astyle-definition: 'CI/astyle/.astylerc'
4141
ignore-path-list: 'CI/astyle/.astyleignore'

0 commit comments

Comments
 (0)