We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b509090 commit ae31c2bCopy full SHA for ae31c2b
.github/workflows/c-cpp.yml
@@ -6,17 +6,16 @@ jobs:
6
build:
7
runs-on: ubuntu-latest
8
steps:
9
- - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
+ - uses: actions/checkout@v4 # v4
10
- name: Cache assets
11
- uses: actions/cache@ab5e6d0c87105b4c9c2047343972218f562e4319 # v4
+ uses: actions/cache@v4 # v4
12
with:
13
# npm cache files are stored in `~/.npm` on Linux/macOS
14
path: tmp
15
key: ${{ runner.os }}-build-${{ hashFiles('Makefile') }}
16
restore-keys: |
17
${{ runner.os }}-build-
18
${{ runner.os }}-
19
20
- name: test
21
run: make test_on_docker
22
env:
0 commit comments