Skip to content

Commit fc2546d

Browse files
committed
update URLs with yet another docs site move
1 parent 3710bfc commit fc2546d

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ module mode by default. To turn it on explicitly, set `GO111MODULE=on`.
4848
#### How do I set environment variables?
4949

5050
They can be set up via `env` for an [entire
51-
workflow](https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#env),
51+
workflow](https://docs.github.com/en/free-pro-team@latest/actions/reference/workflow-syntax-for-github-actions#env),
5252
a job, or for each step:
5353

5454
```yaml
@@ -60,7 +60,7 @@ jobs:
6060

6161
#### How do I set environment variables at run-time?
6262

63-
You can use [workflow commands](https://docs.github.com/en/actions/reference/workflow-commands-for-github-actions)
63+
You can use [workflow commands](https://docs.github.com/en/free-pro-team@latest/actions/reference/workflow-commands-for-github-actions)
6464
to set environment variables, add an element to `$PATH`, and more. For example:
6565

6666
```yaml
@@ -85,7 +85,7 @@ downloaded modules:
8585
#### How do I run a step conditionally?
8686

8787
You can use `if` conditionals, using their [custom expression
88-
language](https://docs.github.com/en/actions/reference/context-and-expression-syntax-for-github-actions):
88+
language](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions):
8989

9090
```yaml
9191
- name: Run end-to-end tests on Linux
@@ -96,9 +96,9 @@ language](https://docs.github.com/en/actions/reference/context-and-expression-sy
9696
#### How do I set up a custom build matrix?
9797

9898
You can [include extra matrix
99-
jobs](https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#example-including-new-combinations),
99+
jobs](https://docs.github.com/en/free-pro-team@latest/actions/reference/workflow-syntax-for-github-actions#example-including-new-combinations),
100100
and you can [exclude specific matrix
101-
jobs](https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#example-excluding-configurations-from-a-matrix).
101+
jobs](https://docs.github.com/en/free-pro-team@latest/actions/reference/workflow-syntax-for-github-actions#example-excluding-configurations-from-a-matrix).
102102

103103
#### How do I run multiline scripts?
104104

@@ -114,11 +114,11 @@ jobs](https://docs.github.com/en/actions/reference/workflow-syntax-for-github-ac
114114
The biggest difference is the UI; workflow results are shown separately.
115115
Grouping jobs in workflows can also be useful if one wants to customize the
116116
workflow triggers, or to set up dependencies via
117-
[needs](https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idneeds).
117+
[needs](https://docs.github.com/en/free-pro-team@latest/actions/reference/workflow-syntax-for-github-actions#jobsjob_idneeds).
118118

119119
#### How do I set up a secret environment variable?
120120

121-
Follow [these steps](https://docs.github.com/en/actions/configuring-and-managing-workflows/creating-and-storing-encrypted-secrets)
121+
Follow [these steps](https://docs.github.com/en/free-pro-team@latest/actions/reference/encrypted-secrets)
122122
to set up the secret in the repo's settings. After adding a secret like
123123
`FOO_SECRET`, use it on a step as follows:
124124

@@ -172,11 +172,11 @@ jobs:
172172

173173
## Quick links
174174

175-
* Concepts, rate limits, etc: https://docs.github.com/en/actions/getting-started-with-github-actions/about-github-actions
175+
* Concepts, rate limits, etc: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions
176176

177-
* Syntax and fields reference: https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions
177+
* Syntax and fields reference: https://docs.github.com/en/free-pro-team@latest/actions/reference/workflow-syntax-for-github-actions
178178

179-
* Environment reference: https://docs.github.com/en/actions/reference/virtual-environments-for-github-hosted-runners
179+
* Environment reference: https://docs.github.com/en/free-pro-team@latest/actions/reference/specifications-for-github-hosted-runners
180180

181181
* To report bugs: https://github.community/c/github-actions/41
182182

0 commit comments

Comments
 (0)