This is an automated email from the ASF dual-hosted git repository.

msingh pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ozone.git

commit 3439bf4c9cad7f1ae8f09e7344c4e89aaf3b28df
Author: Doroszlai, Attila <[email protected]>
AuthorDate: Wed Mar 10 09:44:59 2021 +0100

    HDDS-4891. Avoid latest/master in Github Actions (#1983)
---
 .github/workflows/close-pending.yaml | 4 ++--
 .github/workflows/comments.yaml      | 8 +++++---
 2 files changed, 7 insertions(+), 5 deletions(-)

diff --git a/.github/workflows/close-pending.yaml 
b/.github/workflows/close-pending.yaml
index 55444f7..87c633e 100644
--- a/.github/workflows/close-pending.yaml
+++ b/.github/workflows/close-pending.yaml
@@ -21,10 +21,10 @@ on:
 jobs:
   close-pending:
     name: close-pending
-    runs-on: ubuntu-latest
+    runs-on: ubuntu-18.04
     steps:
       - name: Checkout code
-        uses: actions/checkout@master
+        uses: actions/checkout@v2
       - name: Execute close-pending script
         if: github.repository == 'apache/ozone'
         run: ./.github/close-pending.sh
diff --git a/.github/workflows/comments.yaml b/.github/workflows/comments.yaml
index 2341662..62ae6ad 100644
--- a/.github/workflows/comments.yaml
+++ b/.github/workflows/comments.yaml
@@ -23,9 +23,11 @@ on:
 jobs:
   process-comment:
     name: check-comment
-    runs-on: ubuntu-latest
+    runs-on: ubuntu-18.04
     steps:
-      - uses: actions/checkout@v2
-      - run: ./.github/process-comment.sh
+      - name: Checkout code
+        uses: actions/checkout@v2
+      - name: Execute process-comment script
+        run: ./.github/process-comment.sh
         env:
           GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to