From 2473b7fdd3b54157215d1ea0b1dedc335d118809 Mon Sep 17 00:00:00 2001 From: Josh Johanning Date: Fri, 4 Feb 2022 10:30:11 -0600 Subject: [PATCH 1/2] updating ghcr_token github_token --- .../using-workflows/workflow-syntax-for-github-actions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/actions/using-workflows/workflow-syntax-for-github-actions.md b/content/actions/using-workflows/workflow-syntax-for-github-actions.md index fc1948522f..08205f2ae7 100644 --- a/content/actions/using-workflows/workflow-syntax-for-github-actions.md +++ b/content/actions/using-workflows/workflow-syntax-for-github-actions.md @@ -830,7 +830,7 @@ services: image: ghcr.io/owner/myservice1 credentials: username: ${{ github.actor }} - password: ${{ secrets.ghcr_token }} + password: ${{ secrets.github_token }} myservice2: image: dockerhub_org/myservice2 credentials: From 28e21e745924dd166d58e7705386b1c12a797d53 Mon Sep 17 00:00:00 2001 From: Josh Johanning Date: Fri, 4 Feb 2022 16:33:07 +0000 Subject: [PATCH 2/2] updating ghec_token to github_token --- .../jobs/section-running-jobs-in-a-container-credentials.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/reusables/actions/jobs/section-running-jobs-in-a-container-credentials.md b/data/reusables/actions/jobs/section-running-jobs-in-a-container-credentials.md index faa8c4bf37..bbfb2613a4 100644 --- a/data/reusables/actions/jobs/section-running-jobs-in-a-container-credentials.md +++ b/data/reusables/actions/jobs/section-running-jobs-in-a-container-credentials.md @@ -8,6 +8,6 @@ container: image: ghcr.io/owner/image credentials: username: ${{ github.actor }} - password: ${{ secrets.ghcr_token }} + password: ${{ secrets.github_token }} ``` {% endraw %}