From 4ea823a4e954fd5ba6587c1db0f919d592630bc8 Mon Sep 17 00:00:00 2001 From: Yukai Chou Date: Fri, 24 Jul 2026 16:33:19 +0800 Subject: [PATCH 1/2] Bump actions --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f836eae..7f40169 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,7 @@ jobs: timeout-minutes: 30 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v7 - name: Set up Ruby uses: ruby/setup-ruby@v1 @@ -36,7 +36,7 @@ jobs: - if: matrix.os != 'windows-latest' name: Cache TeX Live on Unix - uses: actions/cache@v3 + uses: actions/cache@v6 id: cache-texlive-unix with: path: /tmp/texlive @@ -46,7 +46,7 @@ jobs: - if: matrix.os == 'windows-latest' name: Cache TeX Live on Windows - uses: actions/cache@v3 + uses: actions/cache@v6 id: cache-texlive-windows with: path: D:\texlive @@ -55,7 +55,7 @@ jobs: ${{ runner.os }}-texlive- - name: Cache RubyGems - uses: actions/cache@v3 + uses: actions/cache@v6 id: cache-gems with: path: vendor/bundle From 8912b32a6aacbe700b9a0586539682d37909b2a7 Mon Sep 17 00:00:00 2001 From: Yukai Chou Date: Fri, 24 Jul 2026 16:33:46 +0800 Subject: [PATCH 2/2] Double quote env vars --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7f40169..626379f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,15 +23,15 @@ jobs: - if: matrix.os == 'ubuntu-latest' name: Set up PATH on Linux - run: echo "/tmp/texlive/bin/x86_64-linux" >> $GITHUB_PATH + run: echo "/tmp/texlive/bin/x86_64-linux" >> "$GITHUB_PATH" - if: matrix.os == 'macos-latest' name: Set up PATH on macOS - run: echo "/tmp/texlive/bin/universal-darwin" >> $GITHUB_PATH + run: echo "/tmp/texlive/bin/universal-darwin" >> "$GITHUB_PATH" - if: matrix.os == 'windows-latest' name: Set up PATH on Windows - run: echo "D:\texlive\bin\windows" >> $GITHUB_PATH + run: echo "D:\texlive\bin\windows" >> "$GITHUB_PATH" shell: bash - if: matrix.os != 'windows-latest'