File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -30,15 +30,15 @@ jobs:
3030 output-sarif : true
3131
3232 - name : Upload Crash
33- uses : actions/upload-artifact@v4
33+ uses : actions/upload-artifact@v5
3434 if : failure() && steps.build.outcome == 'success'
3535 with :
3636 name : artifacts
3737 path : ./out/artifacts
3838
3939 - name : Upload Sarif
4040 if : always() && steps.build.outcome == 'success'
41- uses : github/codeql-action/upload-sarif@v3
41+ uses : github/codeql-action/upload-sarif@v4
4242 with :
4343 # Path to SARIF file relative to the root of the repository
4444 sarif_file : cifuzz-sarif/results.sarif
Original file line number Diff line number Diff line change 1616
1717 steps :
1818 - name : Checkout
19- uses : actions/checkout@v5
19+ uses : actions/checkout@v6
2020
2121 - name : Set up Go 1.20+
2222 uses : actions/setup-go@v6
2727 - run : go version
2828
2929 - name : golangci-lint
30- uses : golangci/golangci-lint-action@v8
30+ uses : golangci/golangci-lint-action@v9
3131 with :
3232 version : v2.4.0
3333 args : --timeout=5m
Original file line number Diff line number Diff line change 1111
1212 steps :
1313 - name : Checkout
14- uses : actions/checkout@v5
14+ uses : actions/checkout@v6
1515
1616 - name : Set up Go 1.20+
1717 uses : actions/setup-go@v6
Original file line number Diff line number Diff line change 2424
2525 # Checks-out repository under $GITHUB_WORKSPACE
2626 - name : Checkout
27- uses : actions/checkout@v5
27+ uses : actions/checkout@v6
2828
2929 # Build everything
3030 - name : Run a build
Original file line number Diff line number Diff line change 3333
3434 # Checks-out repository under $GITHUB_WORKSPACE with tags and history (needed by "SonarCloud Scan" step)
3535 - name : Full checkout
36- uses : actions/checkout@v5
36+ uses : actions/checkout@v6
3737 with :
3838 fetch-depth : 0 # Full clone for SonarCloud
3939
6060 shell : bash
6161
6262 - name : Upload coverage and report files
63- uses : actions/upload-artifact@v4
63+ uses : actions/upload-artifact@v5
6464 with :
6565 name : ${{ hashFiles('./outputs') || 'none' }}
6666 path : ./outputs
@@ -73,12 +73,12 @@ jobs:
7373 runs-on : ubuntu-latest
7474 steps :
7575 # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
76- - uses : actions/checkout@v5
76+ - uses : actions/checkout@v6
7777 with :
7878 fetch-depth : 0 # Shallow clones should be disabled for a better relevancy of analysis
7979
8080 - name : Download artifacts
81- uses : actions/download-artifact@v5
81+ uses : actions/download-artifact@v6
8282 with :
8383 path : ./outputs
8484
9696 directory : .tmp/
9797
9898 - name : SonarQube Scan
99- uses : SonarSource/sonarqube-scan-action@v5
99+ uses : SonarSource/sonarqube-scan-action@v6
100100 env :
101101 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
102102 SONAR_TOKEN : ${{ secrets.SONAR_TOKEN }}
@@ -119,7 +119,7 @@ jobs:
119119 - run : go version
120120
121121 - name : Checkout
122- uses : actions/checkout@v5
122+ uses : actions/checkout@v6
123123
124124 - name : Run a build
125125 run : go build ./...
You can’t perform that action at this time.
0 commit comments