From 7ea1475a162e03037fa3e0e77a7af699d701f073 Mon Sep 17 00:00:00 2001 From: Ni Rui Date: Wed, 8 May 2024 17:58:36 +0800 Subject: [PATCH] Fix the CI code after to adapt the changes introduced by 56138e12800b9b0cf648b4d33ddf10b638969040 --- .github/workflows/workflow.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index 58a3f0b..16ab5ad 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -12,11 +12,11 @@ jobs: steps: - name: Checking out source code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 20 - name: Setting up Go - uses: actions/setup-go@v4 + uses: actions/setup-go@v5 with: go-version: 'stable' - name: Run CI @@ -31,5 +31,6 @@ jobs: sudo apt-get update -y sudo apt-get upgrade -y + sudo apt-get install libvips libvips-dev -y cp ./.ci.sh ./.github-action-ci-script.sh && chmod +x ./.github-action-ci-script.sh && time ./.github-action-ci-script.sh && rm ./.github-action-ci-script.sh