Skip to content

Commit 50c0b2d

Browse files
committed
Removed duplicate actions reusable folder
1 parent 87a7257 commit 50c0b2d

File tree

196 files changed

+334
-334
lines changed

Some content is hidden

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

196 files changed

+334
-334
lines changed

content/actions/automating-builds-and-tests/building-and-testing-java-with-ant.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,9 +78,9 @@ This workflow performs the following steps:
7878

7979
The default starter workflows are excellent starting points when creating your build and test workflow, and you can customize the starter workflow to suit your project’s needs.
8080

81-
{% data reusables.github-actions.example-github-runner %}
81+
{% data reusables.actions.example-github-runner %}
8282

83-
{% data reusables.github-actions.java-jvm-architecture %}
83+
{% data reusables.actions.java-jvm-architecture %}
8484

8585
## Building and testing your code
8686

content/actions/automating-builds-and-tests/building-and-testing-java-with-gradle.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,9 +83,9 @@ This workflow performs the following steps:
8383

8484
The default starter workflows are excellent starting points when creating your build and test workflow, and you can customize the starter workflow to suit your project’s needs.
8585

86-
{% data reusables.github-actions.example-github-runner %}
86+
{% data reusables.actions.example-github-runner %}
8787

88-
{% data reusables.github-actions.java-jvm-architecture %}
88+
{% data reusables.actions.java-jvm-architecture %}
8989

9090
## Building and testing your code
9191

content/actions/automating-builds-and-tests/building-and-testing-java-with-maven.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,9 +78,9 @@ This workflow performs the following steps:
7878

7979
The default starter workflows are excellent starting points when creating your build and test workflow, and you can customize the starter workflow to suit your project’s needs.
8080

81-
{% data reusables.github-actions.example-github-runner %}
81+
{% data reusables.actions.example-github-runner %}
8282

83-
{% data reusables.github-actions.java-jvm-architecture %}
83+
{% data reusables.actions.java-jvm-architecture %}
8484

8585
## Building and testing your code
8686

content/actions/automating-builds-and-tests/building-and-testing-nodejs.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
```
7474
{% endraw %}
7575

76-
{% data reusables.github-actions.example-github-runner %}
76+
{% data reusables.actions.example-github-runner %}
7777

7878
## Specifying the Node.js version
7979

@@ -204,7 +204,7 @@ steps:
204204

205205
### Example using a private registry and creating the .npmrc file
206206

207-
{% data reusables.github-actions.setup-node-intro %}
207+
{% data reusables.actions.setup-node-intro %}
208208

209209
To authenticate to your private registry, you'll need to store your npm authentication token as a secret. For example, create a repository secret called `NPM_TOKEN`. For more information, see "[Creating and using encrypted secrets](/actions/automating-your-workflow-with-github-actions/creating-and-using-encrypted-secrets)."
210210

content/actions/automating-builds-and-tests/building-and-testing-xamarin-applications.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ For a full list of available Xamarin SDK versions on the {% data variables.produ
3131
* [macOS 10.15](https://github.com/actions/virtual-environments/blob/main/images/macos/macos-10.15-Readme.md#xamarin-bundles)
3232
* [macOS 11](https://github.com/actions/virtual-environments/blob/main/images/macos/macos-11-Readme.md#xamarin-bundles)
3333

34-
{% data reusables.github-actions.macos-runner-preview %}
34+
{% data reusables.actions.macos-runner-preview %}
3535

3636
## Prerequisites
3737

content/actions/creating-actions/about-custom-actions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,13 +47,13 @@ Docker containers package the environment with the {% data variables.product.pro
4747

4848
A Docker container allows you to use specific versions of an operating system, dependencies, tools, and code. For actions that must run in a specific environment configuration, Docker is an ideal option because you can customize the operating system and tools. Because of the latency to build and retrieve the container, Docker container actions are slower than JavaScript actions.
4949

50-
Docker container actions can only execute on runners with a Linux operating system. {% data reusables.github-actions.self-hosted-runner-reqs-docker %}
50+
Docker container actions can only execute on runners with a Linux operating system. {% data reusables.actions.self-hosted-runner-reqs-docker %}
5151

5252
### JavaScript actions
5353

5454
JavaScript actions can run directly on a runner machine, and separate the action code from the environment used to run the code. Using a JavaScript action simplifies the action code and executes faster than a Docker container action.
5555

56-
{% data reusables.github-actions.pure-javascript %}
56+
{% data reusables.actions.pure-javascript %}
5757

5858
If you're developing a Node.js project, the {% data variables.product.prodname_actions %} Toolkit provides packages that you can use in your project to speed up development. For more information, see the [actions/toolkit](https://github.com/actions/toolkit) repository.
5959

content/actions/creating-actions/creating-a-composite-action.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ In this guide, you'll learn about the basic components needed to create and use
2323

2424
Once you complete this project, you should understand how to build your own composite action and test it in a workflow.
2525

26-
{% data reusables.github-actions.context-injection-warning %}
26+
{% data reusables.actions.context-injection-warning %}
2727

2828
## Prerequisites
2929

content/actions/creating-actions/creating-a-docker-container-action.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ In this guide, you'll learn about the basic components needed to create and use
2727

2828
Once you complete this project, you should understand how to build your own Docker container action and test it in a workflow.
2929

30-
{% data reusables.github-actions.self-hosted-runner-reqs-docker %}
30+
{% data reusables.actions.self-hosted-runner-reqs-docker %}
3131

32-
{% data reusables.github-actions.context-injection-warning %}
32+
{% data reusables.actions.context-injection-warning %}
3333

3434
## Prerequisites
3535

content/actions/creating-actions/creating-a-javascript-action.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ This guide uses the {% data variables.product.prodname_actions %} Toolkit Node.j
2929

3030
Once you complete this project, you should understand how to build your own JavaScript action and test it in a workflow.
3131

32-
{% data reusables.github-actions.pure-javascript %}
32+
{% data reusables.actions.pure-javascript %}
3333

34-
{% data reusables.github-actions.context-injection-warning %}
34+
{% data reusables.actions.context-injection-warning %}
3535

3636
## Prerequisites
3737

content/actions/creating-actions/dockerfile-support-for-github-actions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ If you define `args` in the action's metadata file, `args` will override the `CM
105105

106106
If you use `CMD` in your `Dockerfile`, follow these guidelines:
107107

108-
{% data reusables.github-actions.dockerfile-guidelines %}
108+
{% data reusables.actions.dockerfile-guidelines %}
109109

110110
## Supported Linux capabilities
111111

0 commit comments

Comments
 (0)