Skip to content

Commit

Permalink
ci: prevent to use branch name
Browse files Browse the repository at this point in the history
refer to latest release

Signed-off-by: Frederic Pillon <[email protected]>
  • Loading branch information
fpistm committed Apr 8, 2024
1 parent 2bf4e4d commit 9078f73
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/Arduino-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@ jobs:
steps:
# First of all, clone the repo using the checkout action.
- name: Checkout
uses: actions/checkout@main
uses: actions/checkout@v4

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

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/Cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@main
uses: actions/checkout@v4

- name: Get latest CMake and Ninja
uses: lukka/get-cmake@latest
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/CodeSpell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@main
uses: actions/checkout@v4

# See: https://github.com/codespell-project/actions-codespell/blob/master/README.md
- name: Spell check
uses: codespell-project/actions-codespell@master
uses: codespell-project/actions-codespell@v2
with:
check_filenames: true
check_hidden: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/MarkdwonLinksCheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
linkinator:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: JustinBeckwith/linkinator-action@v1
with:
paths: '*.md ./CI/**/*.md, ./variants/**/*.md, ./libraries/**/*.md'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/arduino-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Arduino Lint
uses: arduino/arduino-lint-action@v1
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/astyle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ jobs:
steps:
# First of all, clone the repo using the checkout action.
- name: Checkout
uses: actions/checkout@main
uses: actions/checkout@v4

- name: Astyle check
id: Astyle
uses: stm32duino/actions/astyle-check@main
uses: stm32duino/actions/astyle-check@v1
with:
astyle-definition: 'CI/astyle/.astylerc'
ignore-path-list: 'CI/astyle/.astyleignore'
Expand Down

0 comments on commit 9078f73

Please sign in to comment.