Skip to content

fix(deps): update external fixes #5207

fix(deps): update external fixes

fix(deps): update external fixes #5207

Workflow file for this run

name: Build
permissions:
id-token: write
contents: write
issues: read
on: [push]
env:
CI_BUILD_NUM: ${{ github.run_id }}
CI_BRANCH: ${{ github.ref_name }}
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@v5
with:
persist-credentials: 'false'
- name: Set up JDK 17
uses: actions/setup-java@v5
with:
distribution: 'temurin'
java-version: '17'
- name: Setup Node & NPM
uses: ./.github/actions/setup-node-npm
- name: Lint, Test, Coverage Upload
uses: ./.github/actions/lint-test-coverage
- name: Semantic Release (Dry Run)
if: github.ref != 'refs/heads/main'
run: npm run semantic-release-dry
env:
GITHUB_TOKEN: ${{ secrets.ADOBE_BOT_GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.ADOBE_BOT_NPM_TOKEN }}
release:
name: Release
runs-on: ubuntu-latest
needs: test
if: github.ref == 'refs/heads/main'
steps:
- name: Check out
uses: actions/checkout@v5
with:
persist-credentials: 'false'
- name: Set up Node.js 22 (temporary - for bootstrap)
uses: actions/setup-node@v6
with:
node-version: '22.21.1'
- name: Update NPM
run: npm install -g npm@10.9.4
- name: Install dependencies
run: npm ci
- name: Semantic Release
run: npm run semantic-release
env:
GITHUB_TOKEN: ${{ secrets.ADOBE_BOT_GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.ADOBE_BOT_NPM_TOKEN }}