diff --git a/README.md b/README.md
index 7fe339d2..8e29b58b 100644
--- a/README.md
+++ b/README.md
@@ -77,7 +77,7 @@ Actions are downloaded and run from the GitHub graph of repos. This contains gu
-[Hello World JavaScript Action](https://github.com/actions/hello-world-javascript-action)
+
Illustrates how to create a simple hello world javascript action.
@@ -88,11 +88,10 @@ Illustrates how to create a simple hello world javascript action.
...
```
-
-[JavaScript Action Walkthrough](https://github.com/actions/javascript-action)
+
- Walkthrough and template for creating a JavaScript Action with tests, linting, workflow, publishing, and versioning.
+Walkthrough and template for creating a JavaScript Action with tests, linting, workflow, publishing, and versioning.
```javascript
async function run() {
@@ -111,9 +110,8 @@ Test Suites: 1 passed, 1 total
Tests: 3 passed, 3 total
```
-
-[TypeScript Action Walkthrough](https://github.com/actions/typescript-action)
+
Walkthrough creating a TypeScript Action with compilation, tests, linting, workflow, publishing, and versioning.
@@ -138,7 +136,7 @@ Tests: 3 passed, 3 total
-[Docker Action Walkthrough](docs/container-action.md)
+
Create an action that is delivered as a container and run with docker.
@@ -149,9 +147,8 @@ COPY entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]
```
-
-[Docker Action Walkthrough with Octokit](https://github.com/actions/container-toolkit-action)
+
Create an action that is delivered as a container which uses the toolkit. This example uses the GitHub context to construct an Octokit client.
@@ -169,7 +166,6 @@ const context = github.context;
console.log(`We can even get context data, like the repo: ${context.repo.repo}`)
```
-
Recommendations on versioning, releases and tagging your action.