Skip to content

Commit

Permalink
[github][actions] update checkout and cache to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
travisg committed Feb 27, 2024
1 parent 8176ae6 commit 679fbb6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/github-ci-clang.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
echo UBSAN = $UBSAN
- name: checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

# Install LLVM and set up the required environment variables
- name: compute toolchain
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/github-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
# check out the source
- name: checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

# compute the toolchain prefix this project will need
- name: compute toolchain
Expand All @@ -82,7 +82,7 @@ jobs:
# maintain a directory archives/ in the repo
# it will contain tarballs of various toolchains
- name: cache
uses: actions/cache@v3
uses: actions/cache@v4
id: cache
with:
# A list of files, directories, and wildcard patterns to cache and restore
Expand Down

0 comments on commit 679fbb6

Please sign in to comment.