From df61e718a49cc6549868ad33335ded670dc2c9e4 Mon Sep 17 00:00:00 2001 From: Neil Zhao Date: Tue, 4 Jun 2024 22:12:21 -0400 Subject: [PATCH] Update ci.yaml Test CI change --- .github/workflows/ci.yaml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index e69f11f..2e12ceb 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -12,12 +12,12 @@ jobs: name: Node ${{ matrix.node-version }} sample (${{ matrix.os }}) steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Setup Node - uses: actions/setup-node@v2 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} @@ -27,7 +27,7 @@ jobs: echo "::set-output name=dir::$(npm config get cache)" - name: Cache NPM - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: ${{ steps.npm-cache.outputs.dir }} key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} @@ -39,7 +39,7 @@ jobs: - name: Setup Python for Github-Markup if: ${{ runner.os != 'Windows' }} - uses: actions/setup-python@v2 + uses: actions/setup-python@v5 with: python-version: '3.x' @@ -63,7 +63,7 @@ jobs: if: ${{ runner.os != 'Windows' }} uses: ruby/setup-ruby@v1 with: - ruby-version: '3.1.4' + ruby-version: '3.3' bundler-cache: true # runs 'bundle install' and caches installed gems automatically - name: Run Test @@ -79,10 +79,10 @@ jobs: name: Docker sample steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Cache Docker layers - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: /tmp/.buildx-cache key: ${{ runner.os }}-buildx-${{ github.sha }}