Skip to content

Commit da122ba

Browse files
committed
README: fix some urls with xurls -fix
1 parent 5e5ca7c commit da122ba

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Note that `name` fields are optional.
4242
#### How do I set environment variables?
4343

4444
They can be set up via `env` for an [entire
45-
workflow](https://docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions#env),
45+
workflow](https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#env),
4646
a job, or for each step:
4747

4848
```yaml
@@ -54,7 +54,7 @@ jobs:
5454

5555
#### How do I set environment variables at run-time?
5656

57-
You can use [environment files](https://docs.github.com/en/actions/learn-github-actions/workflow-commands-for-github-actions#environment-files)
57+
You can use [environment files](https://docs.github.com/en/actions/using-workflows/workflow-commands-for-github-actions#environment-files)
5858
to set environment variables or add an element to `$PATH`. For example:
5959

6060
```yaml
@@ -103,7 +103,7 @@ You can also include Go's build cache, to improve incremental builds:
103103

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

106-
See [this guide](https://docs.github.com/en/actions/advanced-guides/caching-dependencies-to-speed-up-workflows)
106+
See [this guide](https://docs.github.com/en/actions/using-workflows/caching-dependencies-to-speed-up-workflows)
107107
for more details.
108108

109109
#### How do I run a step conditionally?
@@ -119,9 +119,9 @@ language](https://docs.github.com/en/actions/learn-github-actions/contexts):
119119
#### How do I set up a custom build matrix?
120120

121121
You can [include extra matrix
122-
jobs](https://docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions#example-including-new-combinations),
122+
jobs](https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#example-including-new-combinations),
123123
and you can [exclude specific matrix
124-
jobs](https://docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions#example-excluding-configurations-from-a-matrix).
124+
jobs](https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#example-excluding-configurations-from-a-matrix).
125125

126126
#### How do I run multiline scripts?
127127

@@ -137,7 +137,7 @@ jobs](https://docs.github.com/en/actions/learn-github-actions/workflow-syntax-fo
137137
The biggest difference is the UI; workflow results are shown separately.
138138
Grouping jobs in workflows can also be useful if one wants to customize the
139139
workflow triggers, or to set up dependencies via
140-
[needs](https://docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions#jobsjob_idneeds).
140+
[needs](https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idneeds).
141141

142142
#### How do I set up a secret environment variable?
143143

@@ -205,11 +205,11 @@ jobs:
205205

206206
* Concepts, rate limits, etc: https://docs.github.com/en/actions/learn-github-actions
207207

208-
* Syntax and fields reference: https://docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions
208+
* Syntax and fields reference: https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions
209209

210210
* Environment reference: https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners
211211

212-
* To report bugs: https://github.community/c/code-to-cloud/github-actions/41
212+
* To report bugs: https://github.com/orgs/community/discussions/categories/actions-and-packages
213213

214214
## Caveats
215215

@@ -223,7 +223,7 @@ following `.gitattributes`:
223223
* -text
224224
```
225225

226-
* https://github.com/actions/virtual-environments/issues/712
226+
* https://github.com/actions/runner-images/issues/712
227227

228228
`os.TempDir` on Windows will contain a short name, since `%TEMP%` also contains
229229
it. Note that case sensitivity doesn't matter, and that `os.Open` should still

0 commit comments

Comments
 (0)