Skip to content

Commit 77cc511

Browse files
Bump the github-actions-all group with 3 updates (opensearch-project#1752)
Bumps the github-actions-all group with 3 updates: [actions/checkout](https://github.com/actions/checkout), [actions/download-artifact](https://github.com/actions/download-artifact) and [anchore/sbom-action](https://github.com/anchore/sbom-action). Updates `actions/checkout` from 4 to 5 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) Updates `actions/download-artifact` from 4 to 5 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4...v5) Updates `anchore/sbom-action` from 0.20.2 to 0.20.4 - [Release notes](https://github.com/anchore/sbom-action/releases) - [Changelog](https://github.com/anchore/sbom-action/blob/main/RELEASE.md) - [Commits](anchore/sbom-action@v0.20.2...v0.20.4) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-all - dependency-name: actions/download-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-all - dependency-name: anchore/sbom-action dependency-version: 0.20.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions-all ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 9b56212 commit 77cc511

File tree

6 files changed

+21
-21
lines changed

6 files changed

+21
-21
lines changed

.github/workflows/CI.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
outputs:
2323
docker_cache_key: ${{ steps.generate_docker_cache_key.outputs.key }}
2424
steps:
25-
- uses: actions/checkout@v4
25+
- uses: actions/checkout@v5
2626
- name: Generate Docker Cache Key
2727
id: generate_docker_cache_key
2828
run: |
@@ -61,7 +61,7 @@ jobs:
6161
- spotlessCheck
6262
- publishToMavenLocal
6363
steps:
64-
- uses: actions/checkout@v4
64+
- uses: actions/checkout@v5
6565
- uses: ./.github/actions/setup-env
6666
- name: Run Gradle Build
6767
run: gradle ${{matrix.tasks}}
@@ -71,7 +71,7 @@ jobs:
7171
python-lint:
7272
runs-on: ubuntu-latest
7373
steps:
74-
- uses: actions/checkout@v4
74+
- uses: actions/checkout@v5
7575
- uses: ./.github/actions/setup-env
7676
- name: Install dependencies
7777
run: |
@@ -97,7 +97,7 @@ jobs:
9797
run:
9898
working-directory: ${{ env.WORKING_DIR }}
9999
steps:
100-
- uses: actions/checkout@v4
100+
- uses: actions/checkout@v5
101101
- uses: ./.github/actions/setup-env
102102
- run: |
103103
python3 -m pip install --upgrade pipenv
@@ -140,7 +140,7 @@ jobs:
140140
matrix:
141141
index: ${{ fromJson(needs.generate-test-matrix.outputs.matrix) }}
142142
steps:
143-
- uses: actions/checkout@v4
143+
- uses: actions/checkout@v5
144144
- uses: ./.github/actions/setup-env
145145
- name: Restore Docker Cache
146146
uses: AndreKurait/[email protected]
@@ -198,13 +198,13 @@ jobs:
198198
needs: [ gradle-tests ]
199199
runs-on: ubuntu-latest
200200
steps:
201-
- uses: actions/checkout@v4
201+
- uses: actions/checkout@v5
202202
- uses: ./.github/actions/setup-env
203203
- name: Create clean .exec directory
204204
run: rm -rf build/jacocoMerged && mkdir -p build/jacocoMerged
205205

206206
- name: Download all JaCoCo .exec files into directory expected by jacocoAggregateReport
207-
uses: actions/download-artifact@v4
207+
uses: actions/download-artifact@v5
208208
with:
209209
path: build/jacocoMerged
210210
pattern: coverage-exec-artifacts-gradle-tests-*
@@ -226,7 +226,7 @@ jobs:
226226
needs: [ generate-cache-key ]
227227
runs-on: ubuntu-latest
228228
steps:
229-
- uses: actions/checkout@v4
229+
- uses: actions/checkout@v5
230230
- uses: ./.github/actions/setup-env
231231
- name: Cache Docker Images
232232
uses: AndreKurait/[email protected]
@@ -279,7 +279,7 @@ jobs:
279279
run:
280280
working-directory: ${{ matrix.npm-project }}
281281
steps:
282-
- uses: actions/checkout@v4
282+
- uses: actions/checkout@v5
283283
- uses: ./.github/actions/setup-env
284284
- name: Install NPM dependencies
285285
run: npm ci
@@ -290,7 +290,7 @@ jobs:
290290
runs-on: ubuntu-latest
291291

292292
steps:
293-
- uses: actions/checkout@v4
293+
- uses: actions/checkout@v5
294294
- name: lychee Link Checker
295295
id: lychee
296296
uses: lycheeverse/lychee-action@v2

.github/workflows/codecov-publish.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: Download Workflow Info
21-
uses: actions/download-artifact@v4
21+
uses: actions/download-artifact@v5
2222
with:
2323
# Needed for cross run downloading
2424
github-token: ${{ secrets.GITHUB_TOKEN }}
@@ -34,7 +34,7 @@ jobs:
3434
echo "workflow-info_$key=$value" >> $GITHUB_ENV
3535
done
3636
- name: Download Coverage Artifacts
37-
uses: actions/download-artifact@v4
37+
uses: actions/download-artifact@v5
3838
with:
3939
# Needed for cross run downloading
4040
github-token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/codeql.yml

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

2525
steps:
2626
- name: Checkout repository
27-
uses: actions/checkout@v4
27+
uses: actions/checkout@v5
2828

2929
- name: Initialize CodeQL
3030
uses: github/codeql-action/init@v3

.github/workflows/release-drafter.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
outputs:
2323
dockerhub-password: ${{ steps.retrieve-values.outputs.dockerhub-password }}
2424
steps:
25-
- uses: actions/checkout@v4
25+
- uses: actions/checkout@v5
2626
- uses: ./.github/actions/setup-env
2727
- id: get_data
2828
run: |
@@ -45,27 +45,27 @@ jobs:
4545
run: |
4646
./deployment/cdk/opensearch-service-migration/buildDockerImages.sh -Dbuild.snapshot=false -Dbuild.version=0.${{ steps.get_data.outputs.version }}
4747
- name: Generate SBOM for migration_console
48-
uses: anchore/[email protected].2
48+
uses: anchore/[email protected].4
4949
with:
5050
image: migrations/migration_console:latest
5151
output-file: opensearch-migrations-console-sbom.spdx.json
5252
- name: Generate SBOM for traffic_replayer
53-
uses: anchore/[email protected].2
53+
uses: anchore/[email protected].4
5454
with:
5555
image: migrations/traffic_replayer:latest
5656
output-file: opensearch-migrations-traffic-replayer-sbom.spdx.json
5757
- name: Generate SBOM for capture_proxy
58-
uses: anchore/[email protected].2
58+
uses: anchore/[email protected].4
5959
with:
6060
image: migrations/capture_proxy:latest
6161
output-file: opensearch-migrations-traffic-capture-proxy-sbom.spdx.json
6262
- name: Generate SBOM for reindex_from_snapshot
63-
uses: anchore/[email protected].2
63+
uses: anchore/[email protected].4
6464
with:
6565
image: migrations/reindex_from_snapshot:latest
6666
output-file: opensearch-migrations-reindex-from-snapshot-sbom.spdx.json
6767
- name: Generate SBOM for artifacts
68-
uses: anchore/[email protected].2
68+
uses: anchore/[email protected].4
6969
with:
7070
file: artifacts.tar.gz
7171
output-file: artifacts-sbom.spdx.json

.github/workflows/require-approval.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
outputs:
1414
output-is-require-approval: ${{ steps.step-is-require-approval.outputs.is-require-approval }}
1515
steps:
16-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@v5
1717
with:
1818
ref: ${{ github.event.pull_request.base.sha }}
1919
- name: Get CodeOwner List

.github/workflows/sonar-qube.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
SONAR_ES_BOOTSTRAP_CHECKS_DISABLE: "true"
2828

2929
steps:
30-
- uses: actions/checkout@v4
30+
- uses: actions/checkout@v5
3131
- uses: ./.github/actions/setup-env
3232
- name: Cache SonarQube Scanner
3333
uses: actions/cache@v4

0 commit comments

Comments
 (0)