Skip to content
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/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ updates:
# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/dependabot/README.md
# See: https://docs.github.com/code-security/dependabot/working-with-dependabot/keeping-your-actions-up-to-date-with-dependabot
- package-ecosystem: github-actions
directory: /.github/workflows/
directory: /.github/workflows
open-pull-requests-limit: 100
schedule:
cronjob: 0 12 * * *
Expand All @@ -18,7 +18,7 @@ updates:

# Configure check for outdated GitHub Actions actions in workflow templates.
- package-ecosystem: github-actions
directory: /workflow-templates/
directory: /workflow-templates
open-pull-requests-limit: 100
schedule:
cronjob: 0 13 * * *
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-license.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
matrix:
check-license:
# TODO: Add additional paths where license files should be
- path: ./
- path: .
# TODO: Define the project's license file name here:
expected-filename: LICENSE.txt
# SPDX identifier: https://spdx.org/licenses/
Expand Down
14 changes: 7 additions & 7 deletions Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ vars:
DEFAULT_CLANG_FORMAT_VERSION: 14.0.0
# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/npm-task/Taskfile.yml
# Path of the project's primary npm-managed project:
DEFAULT_NPM_PROJECT_PATH: ./
DEFAULT_NPM_PROJECT_PATH: .

tasks:
check:
Expand Down Expand Up @@ -95,7 +95,7 @@ tasks:
deps:
- task: npm:install-deps
vars:
PROJECT_PATH: ./
PROJECT_PATH: .
cmds:
- |
wget \
Expand Down Expand Up @@ -396,7 +396,7 @@ tasks:
config:sync:
desc: Sync configuration files from templates
vars:
REPOSITORY_ROOT_PATH: "./"
REPOSITORY_ROOT_PATH: "."
WORKFLOW_TEMPLATE_ASSETS_PATH: "./workflow-templates/assets"
cmds:
- |
Expand Down Expand Up @@ -656,7 +656,7 @@ tasks:
deps:
- task: npm:install-deps
vars:
PROJECT_PATH: ./
PROJECT_PATH: .
cmds:
- |
npx \
Expand Down Expand Up @@ -788,7 +788,7 @@ tasks:
- task: docs:generate
- task: npm:install-deps
vars:
PROJECT_PATH: ./
PROJECT_PATH: .
cmds:
- |
npx \
Expand All @@ -801,7 +801,7 @@ tasks:
deps:
- task: npm:install-deps
vars:
PROJECT_PATH: ./
PROJECT_PATH: .
cmds:
- |
npx \
Expand All @@ -815,7 +815,7 @@ tasks:
deps:
- task: npm:install-deps
vars:
PROJECT_PATH: ./
PROJECT_PATH: .
cmds:
- |
npx \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ tasks:
deps:
- task: npm:install-deps
vars:
PROJECT_PATH: ./
PROJECT_PATH: .
cmds:
- |
wget \
Expand Down
6 changes: 3 additions & 3 deletions workflow-templates/assets/check-markdown-task/Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ tasks:
- task: docs:generate
- task: npm:install-deps
vars:
PROJECT_PATH: ./
PROJECT_PATH: .
cmds:
- |
npx \
Expand All @@ -53,7 +53,7 @@ tasks:
deps:
- task: npm:install-deps
vars:
PROJECT_PATH: ./
PROJECT_PATH: .
cmds:
- |
npx \
Expand All @@ -67,7 +67,7 @@ tasks:
deps:
- task: npm:install-deps
vars:
PROJECT_PATH: ./
PROJECT_PATH: .
cmds:
- |
npx \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ tasks:
deps:
- task: npm:install-deps
vars:
PROJECT_PATH: ./
PROJECT_PATH: .
cmds:
- |
npx \
Expand Down
2 changes: 1 addition & 1 deletion workflow-templates/assets/check-toc-task/Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ tasks:
deps:
- task: npm:install-deps
vars:
PROJECT_PATH: ./
PROJECT_PATH: .
cmds:
- |
npx \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ tasks:
deps:
- task: npm:install-deps
vars:
PROJECT_PATH: ./
PROJECT_PATH: .
cmds:
- |
wget \
Expand Down
2 changes: 1 addition & 1 deletion workflow-templates/assets/dependabot/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ updates:
# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/dependabot/README.md
# See: https://docs.github.com/code-security/dependabot/working-with-dependabot/keeping-your-actions-up-to-date-with-dependabot
- package-ecosystem: github-actions
directory: /.github/workflows/
directory: /.github/workflows
open-pull-requests-limit: 100
schedule:
cronjob: 0 12 * * *
Expand Down
2 changes: 1 addition & 1 deletion workflow-templates/assets/go-task/Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version: "3"
vars:
# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/go-task/Taskfile.yml
# Path of the project's primary Go module:
DEFAULT_GO_MODULE_PATH: ./
DEFAULT_GO_MODULE_PATH: .
DEFAULT_GO_PACKAGES:
sh: |
echo $(
Expand Down
2 changes: 1 addition & 1 deletion workflow-templates/assets/npm-task/Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version: "3"
vars:
# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/npm-task/Taskfile.yml
# Path of the project's primary npm-managed project:
DEFAULT_NPM_PROJECT_PATH: ./
DEFAULT_NPM_PROJECT_PATH: .

tasks:
# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/npm-task/Taskfile.yml
Expand Down
8 changes: 4 additions & 4 deletions workflow-templates/check-go-task.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
matrix:
module:
# TODO: add paths of all Go modules here
- path: ./
- path: .

steps:
- name: Checkout repository
Expand Down Expand Up @@ -107,7 +107,7 @@ jobs:
matrix:
module:
# TODO: add paths of all Go modules here
- path: ./
- path: .

steps:
- name: Checkout repository
Expand Down Expand Up @@ -151,7 +151,7 @@ jobs:
matrix:
module:
# TODO: add paths of all Go modules here
- path: ./
- path: .

steps:
- name: Checkout repository
Expand Down Expand Up @@ -193,7 +193,7 @@ jobs:
matrix:
module:
# TODO: add paths of all Go modules here
- path: ./
- path: .

steps:
- name: Checkout repository
Expand Down
2 changes: 1 addition & 1 deletion workflow-templates/check-license.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
matrix:
check-license:
# TODO: Add additional paths where license files should be
- path: ./
- path: .
# TODO: Define the project's license file name here:
expected-filename: LICENSE.txt
# SPDX identifier: https://spdx.org/licenses/
Expand Down
2 changes: 1 addition & 1 deletion workflow-templates/test-go-task.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
- macos-latest
module:
# TODO: add paths of all Go modules here
- path: ./
- path: .
codecov-flags: unit

runs-on: ${{ matrix.operating-system }}
Expand Down
Loading