Skip to content

Commit 86c79a5

Browse files
committed
Update redirecting URLs in reference links
The templates and documentation contain reference links to provide additional information to the users and maintainers. The targets of some of these links have moved since the time they were added. Although the user could still reach the intended content via a redirect, it is best not to rely on redirects continuing to work indefinitely. So the URLs are hereby updated to point directly to the target content.
1 parent e2df7c2 commit 86c79a5

File tree

65 files changed

+113
-107
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

65 files changed

+113
-107
lines changed

.eslintrc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/check-javascript/.eslintrc.yml
2-
# See: https://eslint.org/docs/user-guide/configuring/
2+
# See: https://eslint.org/docs/latest/use/configure/
33
# The code style defined in this file is the official standardized style to be used in all Arduino projects and should
44
# not be modified.
55

.github/workflows/check-ci-sync.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
name: Check CI Workflows Sync
88

9-
# See: https://docs.github.com/actions/using-workflows/events-that-trigger-workflows
9+
# See: https://docs.github.com/actions/writing-workflows/choosing-when-your-workflow-runs/events-that-trigger-workflows
1010
on:
1111
push:
1212
paths:

.github/workflows/check-clang-format.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ env:
44
# See: https://github.com/actions/setup-node/#readme
55
NODE_VERSION: 16.x
66

7-
# See: https://docs.github.com/actions/using-workflows/events-that-trigger-workflows
7+
# See: https://docs.github.com/actions/writing-workflows/choosing-when-your-workflow-runs/events-that-trigger-workflows
88
on:
99
push:
1010
paths:
@@ -75,7 +75,7 @@ jobs:
7575

7676
- name: Set environment variables
7777
run: |
78-
# See: https://docs.github.com/actions/using-workflows/workflow-commands-for-github-actions#setting-an-environment-variable
78+
# See: https://docs.github.com/actions/writing-workflows/choosing-what-your-workflow-does/workflow-commands-for-github-actions#setting-an-environment-variable
7979
if [[ "${{ github.event.inputs.clang-format-version }}" == "" ]]; then
8080
echo "CLANG_FORMAT_VERSION=$(task clang-format:get-version)" >> "$GITHUB_ENV"
8181
else
@@ -99,7 +99,7 @@ jobs:
9999
cd "${{ env.CLANG_FORMAT_INSTALL_PATH }}"
100100
tar --extract --file="${{ steps.download-clang-format.outputs.name }}"
101101
# Add installation to PATH:
102-
# See: https://docs.github.com/actions/using-workflows/workflow-commands-for-github-actions#adding-a-system-path
102+
# See: https://docs.github.com/actions/writing-workflows/choosing-what-your-workflow-does/workflow-commands-for-github-actions#adding-a-system-path
103103
echo "${{ env.CLANG_FORMAT_INSTALL_PATH }}/clang_Linux_64bit" >> "$GITHUB_PATH"
104104
105105
- name: Download yq
@@ -115,7 +115,7 @@ jobs:
115115
cd "${{ env.YQ_INSTALL_PATH }}"
116116
tar --extract --file="${{ steps.download-yq.outputs.name }}"
117117
# Add installation to PATH:
118-
# See: https://docs.github.com/actions/using-workflows/workflow-commands-for-github-actions#adding-a-system-path
118+
# See: https://docs.github.com/actions/writing-workflows/choosing-what-your-workflow-does/workflow-commands-for-github-actions#adding-a-system-path
119119
echo "${{ env.YQ_INSTALL_PATH }}/yq" >> "$GITHUB_PATH"
120120
121121
- name: Check ClangFormat configuration file
@@ -152,7 +152,7 @@ jobs:
152152

153153
- name: Set environment variables
154154
run: |
155-
# See: https://docs.github.com/actions/using-workflows/workflow-commands-for-github-actions#setting-an-environment-variable
155+
# See: https://docs.github.com/actions/writing-workflows/choosing-what-your-workflow-does/workflow-commands-for-github-actions#setting-an-environment-variable
156156
if [[ "${{ github.event.inputs.clang-format-version }}" == "" ]]; then
157157
echo "CLANG_FORMAT_VERSION=$(task clang-format:get-version)" >> "$GITHUB_ENV"
158158
else
@@ -175,7 +175,7 @@ jobs:
175175
cd "${{ env.CLANG_FORMAT_INSTALL_PATH }}"
176176
tar --extract --file="${{ steps.download.outputs.name }}"
177177
# Add installation to PATH:
178-
# See: https://docs.github.com/actions/using-workflows/workflow-commands-for-github-actions#adding-a-system-path
178+
# See: https://docs.github.com/actions/writing-workflows/choosing-what-your-workflow-does/workflow-commands-for-github-actions#adding-a-system-path
179179
echo "${{ env.CLANG_FORMAT_INSTALL_PATH }}/clang_Linux_64bit" >> "$GITHUB_PATH"
180180
181181
- name: Check ClangFormat output
@@ -220,7 +220,7 @@ jobs:
220220
steps:
221221
- name: Set environment variables
222222
run: |
223-
# See: https://docs.github.com/actions/using-workflows/workflow-commands-for-github-actions#setting-an-environment-variable
223+
# See: https://docs.github.com/actions/writing-workflows/choosing-what-your-workflow-does/workflow-commands-for-github-actions#setting-an-environment-variable
224224
echo "CONVERSION_OUTPUT_PATH=${{ runner.temp }}/clang-format-js-object.txt" >> "$GITHUB_ENV"
225225
226226
- name: Checkout repository

.github/workflows/check-community-health-sync.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
name: Check Community Health Files Sync
88

9-
# See: https://docs.github.com/actions/using-workflows/events-that-trigger-workflows
9+
# See: https://docs.github.com/actions/writing-workflows/choosing-when-your-workflow-runs/events-that-trigger-workflows
1010
on:
1111
push:
1212
paths:

.github/workflows/check-config-sync.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
name: Check Configuration Files Sync
88

9-
# See: https://docs.github.com/actions/using-workflows/events-that-trigger-workflows
9+
# See: https://docs.github.com/actions/writing-workflows/choosing-when-your-workflow-runs/events-that-trigger-workflows
1010
on:
1111
push:
1212
pull_request:

.github/workflows/check-dependabot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: Check Dependabot Configuration
22

3-
# See: https://docs.github.com/actions/using-workflows/events-that-trigger-workflows
3+
# See: https://docs.github.com/actions/writing-workflows/choosing-when-your-workflow-runs/events-that-trigger-workflows
44
on:
55
push:
66
paths:

.github/workflows/check-eslint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ env:
44
# See: https://github.com/actions/setup-node/#readme
55
NODE_VERSION: 16.x
66

7-
# See: https://docs.github.com/actions/using-workflows/events-that-trigger-workflows
7+
# See: https://docs.github.com/actions/writing-workflows/choosing-when-your-workflow-runs/events-that-trigger-workflows
88
on:
99
push:
1010
paths:

.github/workflows/check-files-task.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/check-files-task.md
22
name: Check Files
33

4-
# See: https://docs.github.com/actions/using-workflows/events-that-trigger-workflows
4+
# See: https://docs.github.com/actions/writing-workflows/choosing-when-your-workflow-runs/events-that-trigger-workflows
55
on:
66
create:
77
push:

.github/workflows/check-general-formatting-task.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/check-general-formatting-task.md
22
name: Check General Formatting
33

4-
# See: https://docs.github.com/actions/using-workflows/events-that-trigger-workflows
4+
# See: https://docs.github.com/actions/writing-workflows/choosing-when-your-workflow-runs/events-that-trigger-workflows
55
on:
66
create:
77
push:
@@ -47,7 +47,7 @@ jobs:
4747
steps:
4848
- name: Set environment variables
4949
run: |
50-
# See: https://docs.github.com/actions/using-workflows/workflow-commands-for-github-actions#setting-an-environment-variable
50+
# See: https://docs.github.com/actions/writing-workflows/choosing-what-your-workflow-does/workflow-commands-for-github-actions#setting-an-environment-variable
5151
echo "EC_INSTALL_PATH=${{ runner.temp }}/editorconfig-checker" >> "$GITHUB_ENV"
5252
5353
- name: Checkout repository
@@ -75,7 +75,7 @@ jobs:
7575
# Give the binary a standard name
7676
mv "${{ env.EC_INSTALL_PATH }}/bin/ec-linux-amd64" "${{ env.EC_INSTALL_PATH }}/bin/ec"
7777
# Add installation to PATH:
78-
# See: https://docs.github.com/actions/using-workflows/workflow-commands-for-github-actions#adding-a-system-path
78+
# See: https://docs.github.com/actions/writing-workflows/choosing-what-your-workflow-does/workflow-commands-for-github-actions#adding-a-system-path
7979
echo "${{ env.EC_INSTALL_PATH }}/bin" >> "$GITHUB_PATH"
8080
8181
- name: Check formatting

.github/workflows/check-issue-templates.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: Check Issue Templates
22

3-
# See: https://docs.github.com/actions/using-workflows/events-that-trigger-workflows
3+
# See: https://docs.github.com/actions/writing-workflows/choosing-when-your-workflow-runs/events-that-trigger-workflows
44
on:
55
push:
66
paths:

0 commit comments

Comments
 (0)