Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: prevent to use branch name #2333

Merged
merged 1 commit into from
Apr 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading