Bump api.adoptium.net from d884396
to 82d85d7
#226
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Dependency Submission | |
# Triggers the workflow on merging a PR | |
on: | |
pull_request: | |
types: | |
- closed | |
branches: [ "main" ] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
with: | |
submodules: true | |
- name: Build Marketplace | |
uses: ./.github/actions/build-marketplace | |
with: | |
SKIP_TESTS: true | |
- name: Submit Dependency Snapshot | |
uses: advanced-security/maven-dependency-submission-action@v4 |