chore(deps): bump actions/upload-artifact from 6 to 7 #4757
Workflow file for this run
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: CI | |
| on: [push] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| env: | |
| CI: true | |
| jobs: | |
| unit-tests: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| # Available OS's: https://help.github.com/en/actions/reference/virtual-environments-for-github-hosted-runners | |
| os: [ubuntu-latest, windows-latest, macos-latest] | |
| node-version: ["20.x", "22.x", "24.x"] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| cache: "npm" | |
| - run: npm ci | |
| - run: npm run build | |
| - run: npm test | |
| # Upload coverage for sonarcube (only matching OS and one node version required) | |
| - uses: actions/upload-artifact@v7 | |
| if: ${{ matrix.os == 'ubuntu-latest' && matrix.node-version == '24.x' }} | |
| with: | |
| name: code-coverage-${{matrix.os}}-${{matrix.node-version}} | |
| path: coverage/ | |
| sonar-scan: | |
| needs: [unit-tests] | |
| runs-on: ubuntu-latest | |
| if: ${{ github.actor != 'dependabot[bot]' }} | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| # Sonar analysis needs the full history for features like automatic assignment of bugs. If the following step | |
| # is not included the project will show a warning about incomplete information. | |
| fetch-depth: 0 | |
| - uses: actions/download-artifact@v7 | |
| with: | |
| name: code-coverage-ubuntu-latest-24.x | |
| path: coverage/ | |
| - uses: SonarSource/sonarqube-scan-action@a31c9398be7ace6bbfaf30c0bd5d415f843d45e9 # v5 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
| lint: | |
| uses: inrupt/typescript-sdk-tools/.github/workflows/reusable-lint.yml@v3 | |
| check: | |
| if: always() | |
| needs: | |
| - lint | |
| - sonar-scan | |
| - unit-tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Decide whether the needed jobs succeeded or failed | |
| uses: re-actors/alls-green@05ac9388f0aebcb5727afa17fcccfecd6f8ec5fe # release/v1 | |
| with: | |
| jobs: ${{ toJSON(needs) }} | |
| allowed-skips: sonar-scan |