From c603db1b88c317433529c5b2fe3d3ea8740094cc Mon Sep 17 00:00:00 2001 From: Dan Allen Date: Sat, 23 Nov 2024 23:58:40 -0700 Subject: [PATCH] upgrade GitHub Actions --- .github/workflows/ci.yml | 4 ++-- .github/workflows/release.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5b7848d..67bfe6d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -50,7 +50,7 @@ jobs: BUNDLE_WITHOUT: coverage:docs:lint steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set Asciidoctor version if: matrix.asciidoctor-version run: echo 'ASCIIDOCTOR_VERSION=${{ matrix.asciidoctor-version }}' >> $GITHUB_ENV @@ -76,7 +76,7 @@ jobs: run: bundle exec ruby -w $(bundle exec ruby -e 'print File.join Gem.bindir, %q(rake)') spec - name: Install Node.js if: matrix.primary - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: '22' - name: Run smoke test for npm package diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 31e453f..6f52c8a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,14 +13,14 @@ jobs: environment: releases steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install Ruby uses: ruby/setup-ruby@v1 with: ruby-version: '3.3' bundler-cache: false - name: Install Node.js - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: '22' - name: Install Ruby dependencies