Skip to content

Commit 06ba4f4

Browse files
committed
Update GitHub Actions to use latest action versions for checkout and SARIF upload
1 parent d72c54b commit 06ba4f4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
steps:
3636
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
3737
- name: Check out repo
38-
uses: actions/checkout@v4
38+
uses: actions/checkout@v6
3939
with:
4040
submodules: 'recursive'
4141
token: ${{ secrets.REPO_READ_TOKEN }}
@@ -50,7 +50,7 @@ jobs:
5050

5151
- name: Upload SARIF file
5252
if: success() || failure()
53-
uses: github/codeql-action/upload-sarif@v3
53+
uses: github/codeql-action/upload-sarif@v4
5454
with:
5555
# Path to SARIF file relative to the root of the repository
5656
sarif_file: results.sarif
@@ -69,13 +69,13 @@ jobs:
6969
steps:
7070
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
7171
- name: Check out repo
72-
uses: actions/checkout@v4
72+
uses: actions/checkout@v6
7373
with:
7474
submodules: 'recursive'
7575
token: ${{ secrets.REPO_READ_TOKEN }}
7676

7777
- name: Cache MATLAB build files
78-
uses: actions/cache@v4
78+
uses: actions/cache@v5
7979
with:
8080
key: matlab-buildtool
8181
path: |

0 commit comments

Comments
 (0)