Skip to content

Commit 04f7621

Browse files
authored
Branch was updated using the 'autoupdate branch' Actions workflow.
2 parents 2972386 + b25f81e commit 04f7621

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

content/actions/guides/caching-dependencies-to-speed-up-workflows.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,8 +184,8 @@ For example, if a pull request contains a `feature` branch (the current scope) a
184184
1. Key `npm-feature-` in the `feature` branch scope
185185
2. Key `npm-` in the `feature` branch scope
186186
1. Key `npm-feature-d5ea0750` in the `main` branch scope
187-
3. Key `npm-d5ea0750` in the `main` branch scope
188-
4. Key `npm` in the `main` branch scope
187+
3. Key `npm-feature-` in the `main` branch scope
188+
4. Key `npm-` in the `main` branch scope
189189

190190
### Usage limits and eviction policy
191191

content/actions/reference/workflow-commands-for-github-actions.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -254,12 +254,12 @@ echo "action_state=yellow" >> $GITHUB_ENV
254254
Running `$action_state` in a future step will now return `yellow`
255255

256256
#### Multline strings
257-
For multiline strings, you may use a delimeter with the following syntax.
257+
For multiline strings, you may use a delimiter with the following syntax.
258258

259259
```
260-
{name}<<{delimeter}
260+
{name}<<{delimiter}
261261
{value}
262-
{delimeter}
262+
{delimiter}
263263
```
264264

265265
#### Example

content/packages/managing-container-images-with-github-container-registry/pushing-and-pulling-docker-images.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ To push and pull container images owned by an organization, an organization admi
2020

2121
This example pushes the latest version of `IMAGE-NAME`.
2222
```shell
23-
$ docker push ghcr.io/OWNER/IMAGE_NAME.latest
23+
$ docker push ghcr.io/OWNER/IMAGE_NAME:latest
2424
```
2525

2626
This example pushes the `2.5` version of the image.
@@ -42,7 +42,7 @@ To ensure you're always using the same image, you can specify the exact containe
4242
```
4343
2. Remove image locally as needed.
4444
```shell
45-
$ docker rmi ghcr.io/OWNER/IMAGE_NAME.latest
45+
$ docker rmi ghcr.io/OWNER/IMAGE_NAME:latest
4646
```
4747

4848
3. Pull the container image with `@YOUR_SHA_VALUE` after the image name.

0 commit comments

Comments
 (0)