chore(deps-dev): bump minimatch from 3.1.2 to 3.1.5 #1344
This file contains hidden or 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: Build | |
| on: [push] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [22, 24] | |
| permissions: | |
| contents: write | |
| id-token: write # Required for OIDC | |
| issues: write # for semantic-release | |
| pull-requests: write # for semantic-release | |
| steps: | |
| - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6 | |
| with: | |
| fetch-depth: 0 | |
| - uses: flatt-security/setup-takumi-guard-npm@0f69e1fc4f2c4e55dd52abcafa7c4249cd6c7e50 # v1 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| registry-url: 'https://registry.npmjs.org' | |
| cache: npm | |
| - name: Set up JDK 17 | |
| uses: actions/setup-java@dded0888837ed1f317902acf8a20df0ad188d165 # v5 | |
| with: | |
| java-version: "17" | |
| distribution: "temurin" | |
| - name: Setup Gradle | |
| uses: gradle/actions/setup-gradle@4d9f0ba0025fe599b4ebab900eb7f3a1d93ef4c2 # v5 | |
| with: | |
| dependency-graph: generate-and-submit | |
| - name: Download Gradle | |
| run: | | |
| cd test/project/with-artifactory-plugin | |
| ./gradlew dependencies | |
| - name: Build | |
| run: | | |
| npm ci | |
| npm test | |
| - name: Run semantic-release | |
| if: matrix.node-version == 22 | |
| run: | | |
| npm run semantic-release | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| NPM_TOKEN: ${{ env.NODE_AUTH_TOKEN }} |