From 12ec7d1286754844ac2663e6724660cc1fcf4186 Mon Sep 17 00:00:00 2001 From: Gabriel Arazas Date: Tue, 30 May 2023 12:26:44 +0800 Subject: [PATCH] Add cache for build pipeline --- .github/workflows/build.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 536eaf3..313a5c3 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -17,6 +17,12 @@ jobs: build: runs-on: ubuntu-latest steps: + - name: Fetch/cache the fetched URIs + uses: actions/cache@v3 + with: + key: open-uri-content-cache + path: | + /tmp/open-uri-* - uses: actions/checkout@v3 with: fetch-depth: 0