Skip to content

Commit b783950

Browse files
committed
Update actions/checkout@v6
Signed-off-by: David Crosby <dcrosby@fb.com>
1 parent af26510 commit b783950

10 files changed

Lines changed: 17 additions & 17 deletions

.github/workflows/ci-all-security-main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout code
14-
uses: actions/checkout@v4
14+
uses: actions/checkout@v6
1515
with:
1616
fetch-depth: 0
1717

.github/workflows/ci-main-pull-request.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -396,7 +396,7 @@ jobs:
396396
runs-on: ubuntu-latest
397397
steps:
398398
- name: Checkout repository
399-
uses: actions/checkout@v4
399+
uses: actions/checkout@v6
400400
with:
401401
fetch-depth: 0
402402

@@ -629,7 +629,7 @@ jobs:
629629
# app-version: ${{ steps.set-app-version.outputs.version }} # Map the step's output to the job's output
630630
# steps:
631631
# - name: Checkout code
632-
# uses: actions/checkout@v4
632+
# uses: actions/checkout@v6
633633
# - name: Set application version from file
634634
# id: set-app-version
635635
# run: |
@@ -670,7 +670,7 @@ jobs:
670670
ruby-version: ['3.4'] # '2.7', '3.1',
671671
runs-on: ${{ matrix.os-version }}
672672
steps:
673-
- uses: actions/checkout@v4
673+
- uses: actions/checkout@v6
674674
- name: Set up ruby version
675675
uses: ruby/setup-ruby@v1
676676
with:

.github/workflows/intel-cve-bin.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
echo "date=$(/bin/date -u "+%Y%m%d")" >> $GITHUB_OUTPUT
2222
shell: bash
2323
# Let's first download dependencies for this action.
24-
# - uses: actions/checkout@v4
24+
# - uses: actions/checkout@v6
2525
- name: Set up Python
2626
uses: actions/setup-python@v4
2727
with:

.github/workflows/rubocop.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
ruby: ['3.4'] # '2.7', '3.1',
2525
runs-on: ${{ matrix.os }}
2626
steps:
27-
- uses: actions/checkout@v4
27+
- uses: actions/checkout@v6
2828
- uses: ruby/setup-ruby@v1
2929
# follow instructions at https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby & https://docs.github.com/en/actions/use-cases-and-examples/building-and-testing/building-and-testing-ruby
3030
# not recommended to pin setup-ruby anymore - like uses: ruby/setup-ruby@55283cc23133118229fd3f97f9336ee23a179fcf # v1.146.0

.github/workflows/sbom.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080
if : ${{ inputs.export-github-sbom == true }}
8181
steps:
8282
- name: Checkout Code
83-
uses: actions/checkout@v4
83+
uses: actions/checkout@v6
8484

8585
- name: Generate Filename Prefix and full JSON file name as environment variables for later steps
8686
run: |
@@ -188,7 +188,7 @@ jobs:
188188
echo "DETECT_PROJECT_VERSION_NAME: ${{ inputs.version }}"
189189
190190
- name: Checkout source
191-
uses: actions/checkout@v4
191+
uses: actions/checkout@v6
192192

193193
- name: Configure git for private Go modules
194194
env:
@@ -224,7 +224,7 @@ jobs:
224224
if: ${{ inputs.generate-msft-sbom == true }}
225225
timeout-minutes: 5
226226
steps:
227-
- uses: actions/checkout@v4
227+
- uses: actions/checkout@v6
228228
# TODO: cache the sbom-tool binary
229229
- name: Set up Go
230230
uses: actions/setup-go@v5
@@ -266,7 +266,7 @@ jobs:
266266
if: ${{ inputs.license_scout == true }}
267267
timeout-minutes: 5
268268
steps:
269-
- uses: actions/checkout@v4
269+
- uses: actions/checkout@v6
270270

271271
- name: Set up Go
272272
uses: actions/setup-go@v5

.github/workflows/scc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
name: 'Complexity and SLOC generation'
2323
steps:
2424
- name: Checkout
25-
uses: actions/checkout@v4
25+
uses: actions/checkout@v6
2626

2727
- name: Install and run scc CLI
2828
run: |

.github/workflows/sonarqube-internal-repo.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ jobs:
9090
continue-on-error: true
9191
- name: checkout
9292
# removed: if: ${{ inputs.perform-build == true && inputs.visibility == 'internal' }} -- this is internal, so always do checkout
93-
uses: actions/checkout@v4
93+
uses: actions/checkout@v6
9494
with:
9595
fetch-depth: 0
9696

@@ -133,7 +133,7 @@ jobs:
133133
# name: Coverage from chef-vault
134134
# runs-on: ubuntu-22.04
135135
# steps:
136-
# - uses: actions/checkout@v2
136+
# - uses: actions/checkout@v6
137137
# - name: Set up ruby 3.1
138138
# uses: ruby/setup-ruby@v1
139139
# with:
@@ -156,7 +156,7 @@ jobs:
156156
steps:
157157
- name: checkout
158158
# removed: if: ${{ inputs.perform-build == true && inputs.visibility == 'internal' }} -- this is internal, so always do checkout
159-
uses: actions/checkout@v4
159+
uses: actions/checkout@v6
160160
with:
161161
fetch-depth: 0
162162
- name: SonarQube Scan

.github/workflows/sonarqube-public-repo.yml

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

6565
steps:
6666
- name: Checkout code
67-
uses: actions/checkout@v4
67+
uses: actions/checkout@v6
6868
with:
6969
fetch-depth: 0
7070

.github/workflows/trivy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
contents: read
2525
steps:
2626
- name: Check out Git repository
27-
uses: actions/checkout@v4
27+
uses: actions/checkout@v6
2828

2929
- name: Generate Filename Prefix
3030
run: |

.github/workflows/trufflehog.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout code
13-
uses: actions/checkout@v4
13+
uses: actions/checkout@v6
1414
with:
1515
fetch-depth: 0
1616

0 commit comments

Comments
 (0)