chore(deps): update sonarsource/vault-action-wrapper action to v3.0.2 #1113
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
# This workflow verifies that for the given sets of inputs/outputs the gh-action_release defined in the current branch (PR) | |
# still works as expected. | |
# | |
# It checks for the current branch, and allows checking of new input/output parameters at the PR time (Fail fast principles) | |
# without having to release the action first and then use it in a side project. | |
name: Integration tests | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
types: [opened, synchronize, reopened] | |
permissions: | |
id-token: write | |
contents: write | |
jobs: | |
release: | |
name: Test action | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 (Necessary to access local action) | |
- uses: ./main | |
env: | |
ARTIFACTORY_ACCESS_TOKEN: "42" | |
BINARIES_AWS_DEPLOY: "s3://empty" | |
SLACK_API_TOKEN: "slack-token-test" | |
with: | |
dry_run: true | |
publish_to_binaries: true | |
slack_channel: build | |
release-reusable_workflow: | |
name: Test reusable workflow | |
uses: ./.github/workflows/main.yaml | |
with: | |
dryRun: true | |
publishToBinaries: false | |
binariesS3Bucket: test-bucket | |
slackChannel: "" | |
mavenCentralSync: false | |
publishJavadoc: false |