diff --git a/.github/workflows/example_dependabot.yml b/.github/workflows/example_dependabot.yml new file mode 100644 index 0000000000000..87af89be5a49b --- /dev/null +++ b/.github/workflows/example_dependabot.yml @@ -0,0 +1,19 @@ +name: Example Action + +on: [pull_request, push] + +jobs: + example_job: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: Print GitHub actor + run: | + echo "GitHub Actor: ${{ github.actor }}" + + - name: Conditional Step + if: ${{ github.actor == 'dependabot[bot]' }} + run: echo "This job runs because the actor is dependabot." diff --git a/plugins/discovery-azure-classic/build.gradle b/plugins/discovery-azure-classic/build.gradle index 7f34cec94499c..cbf27adf9626e 100644 --- a/plugins/discovery-azure-classic/build.gradle +++ b/plugins/discovery-azure-classic/build.gradle @@ -60,7 +60,7 @@ dependencies { api "com.sun.jersey:jersey-core:${versions.jersey}" api "com.sun.jersey:jersey-json:${versions.jersey}" api "org.codehaus.jettison:jettison:${versions.jettison}" - api 'com.sun.xml.bind:jaxb-impl:2.2.3-1' + api 'com.sun.xml.bind:jaxb-impl:4.0.5' // HACK: javax.xml.bind was removed from default modules in java 9, so we pull the api in here, // and allowlist this hack in JarHell