Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ jobs:
- uses: actions/checkout@v4
- name: lychee Link Checker
id: lychee
uses: lycheeverse/lychee-action@v1
uses: lycheeverse/lychee-action@v2
with:
args: --verbose --accept=200,403,429 "**/*.html" "**/*.md" "**/*.txt" "**/*.json"
--offline
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codecov-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
run-id: ${{ github.event.workflow_run.id }}

- name: Upload coverage report
uses: codecov/codecov-action@v4
uses: codecov/codecov-action@v5
with:
fail_ci_if_error: true
files: /**/coverage-reports/**/*.*
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,27 +51,27 @@ jobs:
run: |
./deployment/cdk/opensearch-service-migration/buildDockerImages.sh -Dbuild.snapshot=false -Dbuild.version=0.${{ steps.get_data.outputs.version }}
- name: Generate SBOM for migration_console
uses: anchore/sbom-action@v0.17.7
uses: anchore/sbom-action@v0.18.0
with:
image: migrations/migration_console:latest
output-file: opensearch-migrations-console-sbom.spdx.json
- name: Generate SBOM for traffic_replayer
uses: anchore/sbom-action@v0.17.7
uses: anchore/sbom-action@v0.18.0
with:
image: migrations/traffic_replayer:latest
output-file: opensearch-migrations-traffic-replayer-sbom.spdx.json
- name: Generate SBOM for capture_proxy
uses: anchore/sbom-action@v0.17.7
uses: anchore/sbom-action@v0.18.0
with:
image: migrations/capture_proxy:latest
output-file: opensearch-migrations-traffic-capture-proxy-sbom.spdx.json
- name: Generate SBOM for reindex_from_snapshot
uses: anchore/sbom-action@v0.17.7
uses: anchore/sbom-action@v0.18.0
with:
image: migrations/reindex_from_snapshot:latest
output-file: opensearch-migrations-reindex-from-snapshot-sbom.spdx.json
- name: Generate SBOM for artifacts
uses: anchore/sbom-action@v0.17.7
uses: anchore/sbom-action@v0.18.0
with:
file: artifacts.tar.gz
output-file: artifacts-sbom.spdx.json
Expand All @@ -97,7 +97,7 @@ jobs:
echo "::add-mask::$DOCKERHUB_PASSWORD"
echo "dockerhub-password=$DOCKERHUB_PASSWORD" >> $GITHUB_OUTPUT
- name: Login to DockerHub
uses: docker/login-action@v1
uses: docker/login-action@v3
with:
username: ${{ secrets.MIGRATIONS_DOCKER_USERNAME }}
password: ${{ steps.retrieve-values.outputs.dockerhub-password }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/sonar-qube.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@ jobs:
SONAR_ES_BOOTSTRAP_CHECKS_DISABLE: "true"

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'corretto'
java-version: |
17
- name: Cache SonarQube Scanner
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.sonar/cache
key: sonar-cache
Expand Down
Loading