1
0
mirror of https://github.com/XFox111/my-website.git synced 2026-07-02 19:52:45 +03:00
Files
my-website/.github/workflows/audit.yml
T
dependabot[bot] e46632373b chore(deps): bump actions/checkout from 6 to 7 in the all group
Bumps the all group with 1 update: [actions/checkout](https://github.com/actions/checkout).


Updates `actions/checkout` from 6 to 7
- [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/v6...v7)

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

Signed-off-by: dependabot[bot] <support@github.com>
2026-07-01 11:23:57 +00:00

53 lines
915 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@v7
- run: npm install
- run: npm audit
build:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v7
- uses: docker/build-push-action@v7
with:
context: .
tags: "my-website:ci"