Skip to content

Commit fafba88

Browse files
committed
increase version of thirdparty actions
1 parent 4868e5d commit fafba88

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/run_analyze-bloat.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818
steps:
1919
- name: Fetch head
20-
uses: actions/checkout@v2
20+
uses: actions/checkout@v3
2121
with:
2222
path: 'head_ref/root'
2323
- name: Compile static lib for head ref
@@ -33,7 +33,7 @@ jobs:
3333
rows: 0 # 0 indicates unlimited number of rows
3434
- name: Fetch base
3535
if: ${{ github.event_name == 'pull_request' }}
36-
uses: actions/checkout@v2
36+
uses: actions/checkout@v3
3737
with:
3838
ref: ${{ github.base_ref }}
3939
path: 'base_ref/root'

.github/workflows/run_fuzzer.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ jobs:
1414

1515
steps:
1616
- name: Fetch head
17-
uses: actions/checkout@v2
17+
uses: actions/checkout@v3
1818
with:
1919
path: 'head'
20-
- uses: actions/cache@v2
20+
- uses: actions/cache@v3
2121
id: cache-corpus
2222
with:
2323
path: head/fuzzing/corpus.tar
@@ -34,13 +34,13 @@ jobs:
3434
run: |
3535
tar cf - cmin > corpus.tar.tmp && mv corpus.tar.tmp "${GITHUB_WORKSPACE}"/head/fuzzing
3636
- name: Save the corpus as a github artifact
37-
uses: actions/upload-artifact@v2
37+
uses: actions/upload-artifact@v3
3838
if: success()
3939
with:
4040
name: corpus
4141
path: head/fuzzing/corpus.tar
4242
- name: Archive any crashes as an artifact
43-
uses: actions/upload-artifact@v2
43+
uses: actions/upload-artifact@v3
4444
if: always()
4545
with:
4646
name: crashes

0 commit comments

Comments
 (0)