chore(deps): bump library/node from 22.13.0-bookworm-slim to 22.13.1-bookworm-slim #742
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
name: Main | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- main | |
paths: | |
- ".github/workflows/**" | |
- "lib/**" | |
- "tests/**" | |
- "package.json" | |
- "package-lock.json" | |
- "Dockerfile" | |
- "index.js" | |
- "envSchema.js" | |
push: | |
branches: | |
- main | |
paths: | |
- ".github/workflows/**" | |
- "lib/**" | |
- "tests/**" | |
- "package.json" | |
- "package-lock.json" | |
- "Dockerfile" | |
- "index.js" | |
- "envSchema.js" | |
jobs: | |
checks: | |
uses: ./.github/workflows/checks.yml | |
tests: | |
needs: | |
- checks | |
uses: ./.github/workflows/tests.yml | |
secrets: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
release-docker: | |
needs: | |
- tests | |
if: ${{ github.ref == format('refs/heads/{0}', github.event.repository.default_branch) }} | |
uses: ./.github/workflows/release-docker.yml | |
secrets: | |
docker_username: ${{ secrets.BOT_DOCKER_USERNAME }} | |
docker_token: ${{ secrets.BOT_DOCKER_TOKEN }} | |
github_cr_token: ${{ secrets.GITHUB_TOKEN }} | |
nexus_username: ${{ secrets.NEXUS_USER }} | |
nexus_token: ${{ secrets.NEXUS_TOKEN }} | |
sysdig_token: ${{ secrets.SYSDIG_SECURE_TOKEN }} | |
perf-test: | |
needs: | |
- checks | |
- release-docker | |
- tests | |
uses: ./.github/workflows/perf-test.yml |