Skip to content

Commit 9bfb14a

Browse files
committed
fixing typos
1 parent 84cfab5 commit 9bfb14a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

04-working-with-build-artifacts/readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ git push
109109

110110
And trigger the workflow from project site.
111111

112-
**DEPRECATED.** ~~If we check the workflow, we will notice that is taking a long time to resolve the dependencies upload~~. **Both actions in version 4 improve significatly the performance. Check this article: <https://github.blog/changelog/2024-04-16-deprecation-notice-v3-of-the-artifact-actions/>**.
112+
**DEPRECATED.** ~~If we check the workflow, we will notice that is taking a long time to resolve the dependencies upload~~. **Both actions in version 4 improve significantly the performance. Check this article: <https://github.blog/changelog/2024-04-16-deprecation-notice-v3-of-the-artifact-actions/>**.
113113

114114
However, this approach is not the proper way to manage this, let's try something different: using the cache.
115115

09-workflow-calls/readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ After you add a `workflow_call` trigger, you need to make sure that your reposit
3131
There are [limitations](https://docs.github.com/en/actions/using-workflows/reusing-workflows#limitations). Some of them are:
3232

3333
* **You can't reference a reusable workflow that's in a private repository**. If you have a reusable workflow in a private repository, only other workflows in that private repository can use it.
34-
* **Reusable workflows cant be stacked on top of one another, but there is a limit**. You can connect a maximum of four levels of workflows - that is, the top-level caller workflow and up to three levels of reusable workflows. For example: caller-workflow.yml → called-workflow-1.yml → called-workflow-2.yml → called-workflow-3.yml. Loops in the workflow tree are not permitted. More info [here](https://docs.github.com/en/actions/sharing-automations/reusing-workflows#nesting-reusable-workflows)
35-
* **You can call a maximum of 20 unique reusable workflows from a single worklow file**. This limit includes nested/stacked reusable workflows.
34+
* **Reusable workflows can't be stacked on top of one another, but there is a limit**. You can connect a maximum of four levels of workflows - that is, the top-level caller workflow and up to three levels of reusable workflows. For example: caller-workflow.yml → called-workflow-1.yml → called-workflow-2.yml → called-workflow-3.yml. Loops in the workflow tree are not permitted. More info [here](https://docs.github.com/en/actions/sharing-automations/reusing-workflows#nesting-reusable-workflows)
35+
* **You can call a maximum of 20 unique reusable workflows from a single workflow file**. This limit includes nested/stacked reusable workflows.
3636

3737
## Reusable workflows vs composite actions
3838

0 commit comments

Comments
 (0)