Skip to content

Commit 06f56f6

Browse files
authored
update actions/checkout version (#2579)
* update actions/checkout version * fix broken link * simplify link * remove outbound links
1 parent 3af1169 commit 06f56f6

15 files changed

Lines changed: 21 additions & 25 deletions

docs/kb/semgrep-ci/github-repository-rulesets-semgrep.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
if: (github.actor != 'dependabot[bot]') && (github.event != 'merge_group')
6464
6565
steps:
66-
- uses: actions/checkout@v4
66+
- uses: actions/checkout@v6
6767
- run: semgrep ci
6868
env:
6969
SEMGREP_APP_TOKEN: ${{ secrets.SEMGREP_APP_TOKEN }}

docs/kb/semgrep-ci/github-upload-findings-in-security-dashboard.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
actions: read
6464
contents: read
6565
steps:
66-
- uses: actions/checkout@v4
66+
- uses: actions/checkout@v6
6767
- run: semgrep ci --sarif > semgrep.sarif
6868
env:
6969
SEMGREP_APP_TOKEN: ${{ secrets.SEMGREP_APP_TOKEN }}

docs/kb/semgrep-ci/scan-monorepo-in-parts.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ jobs:
113113

114114
steps:
115115
# Fetch project source with GitHub Actions Checkout. Use either v3 or v4.
116-
- uses: actions/checkout@v4
116+
- uses: actions/checkout@v6
117117
# Run the "semgrep ci" command on the command line of the docker image.
118118
- run: semgrep ci --subdir=src/moduleA/
119119
env:
@@ -162,7 +162,7 @@ jobs:
162162

163163
steps:
164164
# Fetch project source with GitHub Actions Checkout. Use either v3 or v4.
165-
- uses: actions/checkout@v4
165+
- uses: actions/checkout@v6
166166
# Run the "semgrep ci" command on the command line of the docker image.
167167
- run: semgrep ci --include=src/moduleA/
168168
env:

docs/kb/semgrep-ci/trigger-diff-scans-env-var.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ jobs:
109109

110110
steps:
111111
# Fetch project source with GitHub Actions Checkout. Use either v3 or v4.
112-
- uses: actions/checkout@v4
112+
- uses: actions/checkout@v6
113113
# Run the "semgrep ci" command on the command line of the docker image.
114114
- run: semgrep ci
115115
env:

docs/kb/semgrep-ci/using-nonroot-docker-image-with-gha.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
name: semgrep/ci
4848
runs-on: ubuntu-latest
4949
steps:
50-
- uses: actions/checkout@v4
50+
- uses: actions/checkout@v6
5151
- name: Run Semgrep
5252
run: |
5353

docs/kb/semgrep-supply-chain/ssc-python-lockfiles.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ jobs:
144144
name: requirementsGeneration
145145
runs-on: ubuntu-latest
146146
steps:
147-
- uses: actions/checkout@v4
147+
- uses: actions/checkout@v6
148148
- name: Generate requirements txt
149149
run: |
150150
pip3 install pip-tools
@@ -163,7 +163,7 @@ jobs:
163163
container:
164164
image: semgrep/semgrep
165165
steps:
166-
- uses: actions/checkout@v4
166+
- uses: actions/checkout@v6
167167
- name: Download artifact from previous job
168168
uses: actions/download-artifact@v4
169169
with:

docs/learn/vulnerabilities/command-injection/github-actions-injection.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ jobs:
168168
contents: read
169169
steps:
170170
- name: checkout
171-
uses: actions/checkout@v3
171+
uses: actions/checkout@v6
172172
- name: install
173173
run: npm install
174174

docs/semgrep-ci/packages-in-semgrep-docker.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ The Alpine 3.22 docker image includes additional packages that can change withou
2929
container: semgrep/semgrep:latest
3030
runs-on: ubuntu-latest-16-core
3131
steps:
32-
- uses: actions/checkout@v3
32+
- uses: actions/checkout@v6
3333
- name: Install dependencies
3434
run: apk add bash jq curl
3535
- run: semgrep scan --json ... | jq ...

docs/semgrep-supply-chain/setup-maven.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ jobs:
7777
buildmavenDepTree:
7878
runs-on: ubuntu-latest
7979
steps:
80-
- uses: actions/checkout@v4
80+
- uses: actions/checkout@v6
8181
- name: Set up JDK 11
8282
uses: actions/setup-java@v3
8383
with:
@@ -102,7 +102,7 @@ jobs:
102102
container:
103103
image: semgrep/semgrep
104104
steps:
105-
- uses: actions/checkout@v4
105+
- uses: actions/checkout@v6
106106
- name: Download artifact from the previous job
107107
uses: actions/download-artifact@v3
108108
with:
@@ -133,7 +133,7 @@ jobs:
133133
buildmavenDepTree:
134134
runs-on: ubuntu-latest
135135
steps:
136-
- uses: actions/checkout@v4
136+
- uses: actions/checkout@v6
137137
- name: Set up JDK 17
138138
uses: actions/setup-java@v3
139139
with:
@@ -157,7 +157,7 @@ jobs:
157157
container:
158158
image: semgrep/semgrep
159159
steps:
160-
- uses: actions/checkout@v4
160+
- uses: actions/checkout@v6
161161
- name: Download artifact from previous job
162162
uses: actions/download-artifact@v3
163163
with:

docs/troubleshooting/semgrep-app.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
image: semgrep/semgrep
6868
if: (github.actor != 'dependabot[bot]')
6969
steps:
70-
- uses: actions/checkout@v3
70+
- uses: actions/checkout@v6
7171
# Use this command for the verbose level of debugging.
7272
- run: semgrep ci --verbose &> semgrep.log
7373
# Use this command for the Semgrep's highest logging level, --debug.
@@ -143,10 +143,6 @@ variables:
143143
SECURE_LOG_LEVEL: "debug"
144144
```
145145

146-
### How to get GitLab assistance
147-
148-
If you’re a GitLab customer and suspect there’s an issue with GitLab, please [contact GitLab support](https://about.gitlab.com/support/) and open a support ticket. Users of GitLab’s free plans should open a thread in the [GitLab Community Forum](https://forum.gitlab.com).
149-
150146
## Project-specific issues
151147

152148
A **project** is any repository you have added to Semgrep Cloud Platform for scanning. Refer to the following sections for issues in the **Semgrep AppSec Platform > Projects** page.

0 commit comments

Comments
 (0)