You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by ct...@apache.org on 2022/10/18 17:54:08 UTC

[accumulo-website] branch main updated: Bump GitHub Actions versions (#348)

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

ctubbsii pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/main by this push:
     new 8242be6c Bump GitHub Actions versions (#348)
8242be6c is described below

commit 8242be6cb561a9e5091f1b131a184d94d1fe446e
Author: Christopher Tubbs <ct...@apache.org>
AuthorDate: Tue Oct 18 13:54:03 2022 -0400

    Bump GitHub Actions versions (#348)
    
    * Migrate from deprecated actions/setup-ruby to ruby/setup-ruby
---
 .github/workflows/jekyll.yaml | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/.github/workflows/jekyll.yaml b/.github/workflows/jekyll.yaml
index c511f947..4c5e634b 100644
--- a/.github/workflows/jekyll.yaml
+++ b/.github/workflows/jekyll.yaml
@@ -30,13 +30,13 @@ jobs:
     timeout-minutes: 15
     runs-on: ubuntu-latest
     steps:
-    - uses: actions/checkout@v2
+    - uses: actions/checkout@v3
     - name: Set up Ruby
-      uses: actions/setup-ruby@v1
+      uses: ruby/setup-ruby@v1
       with:
         ruby-version: 2.6
     - name: Cache gems
-      uses: actions/cache@v2
+      uses: actions/cache@v3
       with:
         path: ~/vendor/bundle
         key: ${{ runner.os }}-gem-${{ hashFiles('**/Gemfile.lock') }}
@@ -49,7 +49,7 @@ jobs:
         bundle install --jobs 4 --retry 3
         bundle exec jekyll build
     - name: Upload site
-      uses: actions/upload-artifact@v2
+      uses: actions/upload-artifact@v3
       with:
         name: site
         path: ./_site/