Bump api.adoptium.net from fa725fe
to 4b1ff39
#26
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@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
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 |