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

dgrove pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/openwhisk-runtime-docker.git


The following commit(s) were added to refs/heads/master by this push:
     new 0c9ee4c  update versions of GitHub Actions (#103)
0c9ee4c is described below

commit 0c9ee4c5c35a0a0d570c71e92b6b01fb07365776
Author: David Grove <dgrove-...@users.noreply.github.com>
AuthorDate: Tue Mar 19 10:03:03 2024 -0400

    update versions of GitHub Actions (#103)
---
 .github/workflows/ci.yaml | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
index c720ebd..dc32e49 100644
--- a/.github/workflows/ci.yaml
+++ b/.github/workflows/ci.yaml
@@ -39,7 +39,7 @@ jobs:
     steps:
       # Checkout just this repo and run scanCode before we do anything else
       - name: Checkout runtime repo
-        uses: actions/checkout@v3
+        uses: actions/checkout@v4
         with:
           path: runtime
       - name: Scan Code
@@ -47,19 +47,19 @@ jobs:
 
       # Install core OpenWhisk artifacts needed to build/test anything else
       - name: Checkout OpenWhisk core repo
-        uses: actions/checkout@v3
+        uses: actions/checkout@v4
         with:
           repository: apache/openwhisk
           path: core
 
       - name: Checkout OpenWhisk Utilities repo
-        uses: actions/checkout@v3
+        uses: actions/checkout@v4
         with:
           repository: apache/openwhisk-utilities
           path: utilities
 
       - name: Setup Java
-        uses: actions/setup-java@v3
+        uses: actions/setup-java@v4
         with:
           distribution: 'temurin'
           java-version: '11'
@@ -102,7 +102,7 @@ jobs:
       # Important: naming convention for release tags is runtime@version
       - name: Docker Login
         if: ${{ env.PUSH_NIGHTLY  == 'true' || env.PUSH_RELEASE == 'true' }}
-        uses: docker/login-action@v2
+        uses: docker/login-action@v3
         with:
           username: ${{ secrets.DOCKERHUB_USER_OPENWHISK }}
           password: ${{ secrets.DOCKERHUB_TOKEN_OPENWHISK }}

Reply via email to