From 30a0b814b9b0a7ac85296d741cd707bd40e470cf Mon Sep 17 00:00:00 2001 From: Shish Date: Sat, 6 Apr 2024 12:08:04 +0100 Subject: [PATCH] [ci] bump github actions --- .github/workflows/common.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/common.yml b/.github/workflows/common.yml index 41ab7ff..cbbcc0f 100644 --- a/.github/workflows/common.yml +++ b/.github/workflows/common.yml @@ -35,10 +35,10 @@ jobs: if: "!contains(github.event.head_commit.message, '[skip format]')" steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set Up Cache if: inputs.cache-paths - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ inputs.cache-paths }} key: ${{ inputs.workdir }}-format-${{ inputs.cache-key }}${{ hashFiles(inputs.cache-file) }} @@ -69,12 +69,12 @@ jobs: if: "!contains(github.event.head_commit.message, '[skip build]')" steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: submodules: recursive - name: Set Up Cache if: inputs.cache-paths - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ inputs.cache-paths }} key: ${{ inputs.workdir }}-build-${{ inputs.cache-key }}${{ hashFiles(inputs.cache-file) }}