Skip to content

Commit

Permalink
ci: update Github actions depending on cache to latest versions
Browse files Browse the repository at this point in the history
This PR updates several of the Github actions we use in CI that use the
`cache` Github action, potentially transitively. This will be necessary
soon since the currently used version, v3, is being deprecated and will
stop working at the end of this month.

Signed-off-by: Ingo Müller <[email protected]>
  • Loading branch information
ingomueller-net committed Jan 21, 2025
1 parent c01f183 commit d3e48b5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@ jobs:
python-version: 3.11

- name: Cache git folder
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: substrait-mlir/.git
key: git-folder

- name: Install dependencies from apt
uses: awalsh128/[email protected].2
uses: awalsh128/cache-apt-pkgs-action@5902b33ae29014e6ca012c5d8025d4346556bd40 # v1.4.3
with:
packages: protobuf-compiler libprotobuf-dev libcurl4-gnutls-dev
version: 1.0
Expand All @@ -51,7 +51,7 @@ jobs:
uses: llvm/actions/install-ninja@6a57890d0e3f9f35dfc72e7e48bc5e1e527cdd6c # Jan 17

- name: Ccache for C++ compilation
uses: hendrikmuhs/ccache-action@621a41397ed83711c72862638d9ff6e63fca3041 # v1.2.3
uses: hendrikmuhs/ccache-action@53911442209d5c18de8a31615e0923161e435875 # v1.2.16
with:
key: ${{ runner.os }}-substrait-mlir
# LLVM needs serious cache size
Expand Down

0 comments on commit d3e48b5

Please sign in to comment.