Skip to content

Commit a107062

Browse files
committed
README: amend links once again
Gotta love these moving twice a year.
1 parent 5f1bff4 commit a107062

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

README.md

Lines changed: 12 additions & 12 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/free-pro-team@latest/actions/reference/workflow-syntax-for-github-actions#env),
51+
workflow](https://docs.github.com/en/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/free-pro-team@latest/actions/reference/workflow-commands-for-github-actions#environment-files)
63+
You can use [workflow commands](https://docs.github.com/en/actions/reference/workflow-commands-for-github-actions#environment-files)
6464
to set environment variables or add an element to `$PATH`. For example:
6565

6666
```yaml
@@ -109,13 +109,13 @@ You can also include Go's build cache, to improve incremental builds:
109109

110110
This is demonstrated via the `test-cache` job [in this very repository](https://github.com/mvdan/github-actions-golang/actions).
111111

112-
See [this guide](https://docs.github.com/en/free-pro-team@latest/actions/guides/caching-dependencies-to-speed-up-workflows)
112+
See [this guide](https://docs.github.com/en/actions/guides/caching-dependencies-to-speed-up-workflows)
113113
for more details.
114114

115115
#### How do I run a step conditionally?
116116

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

120120
```yaml
121121
- name: Run end-to-end tests on Linux
@@ -126,9 +126,9 @@ language](https://docs.github.com/en/free-pro-team@latest/actions/reference/cont
126126
#### How do I set up a custom build matrix?
127127

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

133133
#### How do I run multiline scripts?
134134

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

149149
#### How do I set up a secret environment variable?
150150

151-
Follow [these steps](https://docs.github.com/en/free-pro-team@latest/actions/reference/encrypted-secrets)
151+
Follow [these steps](https://docs.github.com/en/actions/reference/encrypted-secrets)
152152
to set up the secret in the repo's settings. After adding a secret like
153153
`FOO_SECRET`, use it on a step as follows:
154154

@@ -213,13 +213,13 @@ jobs:
213213

214214
## Quick links
215215

216-
* Concepts, rate limits, etc: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions
216+
* Concepts, rate limits, etc: https://docs.github.com/en/actions/learn-github-actions
217217

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

220-
* Environment reference: https://docs.github.com/en/free-pro-team@latest/actions/reference/specifications-for-github-hosted-runners
220+
* Environment reference: https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners
221221

222-
* To report bugs: https://github.community/c/github-actions/41
222+
* To report bugs: https://github.community/c/code-to-cloud/github-actions/41
223223

224224
## Caveats
225225

0 commit comments

Comments
 (0)