Skip to content

Commit 128dc38

Browse files
committed
update GHA actions' versions
1 parent e9df70b commit 128dc38

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
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ubuntu-latest
1919
steps:
2020
- name: Fetch head
21-
uses: actions/checkout@v3
21+
uses: actions/checkout@v4
2222
with:
2323
path: 'head_ref/root'
2424
- name: Compile static lib for head ref
@@ -34,7 +34,7 @@ jobs:
3434
rows: 0 # 0 indicates unlimited number of rows
3535
- name: Fetch base
3636
if: ${{ github.event_name == 'pull_request' }}
37-
uses: actions/checkout@v3
37+
uses: actions/checkout@v4
3838
with:
3939
ref: ${{ github.base_ref }}
4040
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@v3
17+
uses: actions/checkout@v4
1818
with:
1919
path: 'head'
20-
- uses: actions/cache@v3
20+
- uses: actions/cache@v4
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@v3
37+
uses: actions/upload-artifact@v4
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@v3
43+
uses: actions/upload-artifact@v4
4444
if: always()
4545
with:
4646
name: crashes

0 commit comments

Comments
 (0)