1
0
mirror of https://github.com/XFox111/my-website.git synced 2026-04-22 07:28:01 +03:00
Files
my-website/.github/workflows/audit.yml
T
dependabot[bot] c76579341c chore(deps): bump actions/checkout from 4 to 5
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v4...v5)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: '5'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-09-02 20:26:39 +03:00

54 lines
950 B
YAML

name: Audit pipeline
on:
push:
paths-ignore:
- '.devcontainer/*'
- '.github/*'
- '!.github/workflows/audit.yml'
- '.vscode/*'
- '**.md'
- '.env*'
- 'LICENSE'
- 'COPYING'
- '.git*'
pull_request:
paths-ignore:
- '.devcontainer/*'
- '.github/*'
- '!.github/workflows/audit.yml'
- '.vscode/*'
- '**.md'
- '.env*'
- 'LICENSE'
- 'COPYING'
- '.git*'
workflow_dispatch:
jobs:
audit:
runs-on: ubuntu-latest
container: node:24
permissions:
contents: read
steps:
- uses: actions/checkout@v5
- run: corepack enable
- run: yarn install
- run: yarn npm audit
build:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v5
- uses: docker/build-push-action@v6
with:
context: .
tags: "my-website:ci"