You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jdo-commits@db.apache.org by to...@apache.org on 2023/06/04 18:35:58 UTC

[db-jdo-site] branch update-github-action-versions created (now 62b8674)

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

tobous pushed a change to branch update-github-action-versions
in repository https://gitbox.apache.org/repos/asf/db-jdo-site.git


      at 62b8674  Update GitHub action versions & replace deprecated commands

This branch includes the following new commits:

     new 62b8674  Update GitHub action versions & replace deprecated commands

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[db-jdo-site] 01/01: Update GitHub action versions & replace deprecated commands

Posted by to...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

tobous pushed a commit to branch update-github-action-versions
in repository https://gitbox.apache.org/repos/asf/db-jdo-site.git

commit 62b867435b6d5c3c0120577ac022f507d1b663e6
Author: Tobias Bouschen <to...@googlemail.com>
AuthorDate: Sun Jun 4 20:23:55 2023 +0200

    Update GitHub action versions & replace deprecated commands
---
 .github/workflows/build-site.yml           | 2 +-
 .github/workflows/deploy-site.yml          | 6 +++---
 .github/workflows/recreate-site-branch.yml | 4 ++--
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/.github/workflows/build-site.yml b/.github/workflows/build-site.yml
index 3559139..5074239 100644
--- a/.github/workflows/build-site.yml
+++ b/.github/workflows/build-site.yml
@@ -17,7 +17,7 @@ jobs:
 
     steps:
       - name: Checkout
-        uses: actions/checkout@v2
+        uses: actions/checkout@v3
         with:
           fetch-depth: 1
 
diff --git a/.github/workflows/deploy-site.yml b/.github/workflows/deploy-site.yml
index d17de42..5355c3b 100644
--- a/.github/workflows/deploy-site.yml
+++ b/.github/workflows/deploy-site.yml
@@ -37,7 +37,7 @@ jobs:
 
     steps:
       - name: Checkout
-        uses: actions/checkout@v2
+        uses: actions/checkout@v3
         with:
           fetch-depth: 1
 
@@ -53,7 +53,7 @@ jobs:
         id: short-sha
         run: |
           short_sha=$(git rev-parse --short=10 $GITHUB_SHA)
-          echo "::set-output name=SHORT_SHA::$short_sha"
+          echo "SHORT_SHA=$short_sha" >> "$GITHUB_OUTPUT"
 
 
       # Determines the author data of the HEAD commit
@@ -153,7 +153,7 @@ jobs:
               has_staged_changes=true
           fi
 
-          echo "::set-output name=HAS_STAGED_CHANGES::$has_staged_changes"
+          echo "HAS_STAGED_CHANGES=$has_staged_changes" >> "$GITHUB_OUTPUT"
 
 
       # Publishes the build results
diff --git a/.github/workflows/recreate-site-branch.yml b/.github/workflows/recreate-site-branch.yml
index e2e5a31..645524c 100644
--- a/.github/workflows/recreate-site-branch.yml
+++ b/.github/workflows/recreate-site-branch.yml
@@ -26,7 +26,7 @@ jobs:
 
     steps:
       - name: Checkout
-        uses: actions/checkout@v2
+        uses: actions/checkout@v3
         with:
           ref: main
           fetch-depth: 1
@@ -43,7 +43,7 @@ jobs:
         id: short-sha
         run: |
           short_sha=$(git rev-parse --short=10 $GITHUB_SHA)
-          echo "::set-output name=SHORT_SHA::$short_sha"
+          echo "SHORT_SHA=$short_sha" >> "$GITHUB_OUTPUT"
 
 
       # Determines the author data of the HEAD commit