File 6084-Fix-up-references-to-ghcr.io.patch of Package erlang
From e3dbc9eb4f2ba4b6d89c763c8a20e8705288f50f Mon Sep 17 00:00:00 2001
From: Tom <TD5@users.noreply.github.com>
Date: Thu, 2 Mar 2023 09:47:26 +0000
Subject: [PATCH 4/5] Fix up references to ghcr.io
---
.github/workflows/main.yaml | 14 +++++++-------
.github/workflows/pr-comment.yaml | 6 +++---
.github/workflows/sync-github-releases.yaml | 10 +++++-----
.github/workflows/update-base.yaml | 4 ++--
4 files changed, 17 insertions(+), 17 deletions(-)
diff --git a/.github/workflows/pr-comment.yaml b/.github/workflows/pr-comment.yaml
index c226de06d8..a72c98e09a 100644
--- a/.github/workflows/pr-comment.yaml
+++ b/.github/workflows/pr-comment.yaml
@@ -37,7 +37,7 @@ jobs:
steps:
- uses: actions/checkout@v2
## We create an initial comment with some useful help to the user
- - uses: actions/github-script@v5
+ - uses: actions/github-script@v5.1.1
with:
script: |
const script = require('./.github/scripts/pr-comment.js');
@@ -107,7 +107,7 @@ jobs:
"${{ needs.pr-number.outputs.result }}"
- name: Deploy to github pages 🚀
- uses: JamesIves/github-pages-deploy-action@v4.2.2
+ uses: JamesIves/github-pages-deploy-action@v4.4.1
with:
token: ${{ secrets.ERLANG_TOKEN }}
branch: master # The branch the action should deploy to.
@@ -117,7 +117,7 @@ jobs:
## Append some usefull links and tips to the test results posted by
## Publish CT Test Results
- - uses: actions/github-script@v5
+ - uses: actions/github-script@v5.1.1
if: always()
with:
script: |
diff --git a/.github/workflows/sync-github-releases.yaml b/.github/workflows/sync-github-releases.yaml
index af3245f1ba..40dc72f684 100644
--- a/.github/workflows/sync-github-releases.yaml
+++ b/.github/workflows/sync-github-releases.yaml
@@ -15,11 +15,11 @@ jobs:
concurrency: sync-github-releases
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
## We need to login to the package registry in order to pull
## the base debian image.
- name: Docker login
- run: docker login https://docker.pkg.github.com -u ${{ github.actor }} -p ${{ secrets.GITHUB_TOKEN }}
+ run: docker login https://ghcr.io -u ${{ github.actor }} -p ${{ secrets.GITHUB_TOKEN }}
- name: Sync releases
env:
ERLANG_ORG_TOKEN: ${{ secrets.TRIGGER_ERLANG_ORG_BUILD }}
@@ -32,12 +32,12 @@ jobs:
concurrency: erlang.github.io-deploy
runs-on: ubuntu-20.04
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
with:
token: ${{ secrets.ERLANG_TOKEN }}
repository: 'erlang/erlang.github.io'
path: erlang.github.io
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
- name: Update PRs
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
@@ -48,7 +48,7 @@ jobs:
mkdir -p "${GITHUB_WORKSPACE}/erlang.github.io/prs/"
.github/scripts/sync-github-prs.es erlang/otp "${GITHUB_WORKSPACE}/erlang.github.io/prs/"
- name: Deploy to github pages 🚀
- uses: JamesIves/github-pages-deploy-action@v4.2.2
+ uses: JamesIves/github-pages-deploy-action@v4.4.1
with:
token: ${{ secrets.ERLANG_TOKEN }}
branch: master # The branch the action should deploy to.
--
2.35.3