Skip to content

β˜• chore: Bump @types/node from 25.9.5 to 26.1.1 #301

β˜• chore: Bump @types/node from 25.9.5 to 26.1.1

β˜• chore: Bump @types/node from 25.9.5 to 26.1.1 #301

Workflow file for this run

name: Container
on:
pull_request:
branches: [ dev, main ]
push:
branches: [ dev, main ]
release:
types: [ published ]
workflow_dispatch:
concurrency:
group: Container-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
packages: write
security-events: write
pull-requests: write
jobs:
ci:
name: CI Gate
uses: ./.github/workflows/ci.yml
secrets: inherit
permissions:
contents: read
pull-requests: write
codeql:
name: CodeQL Gate
uses: ./.github/workflows/codeql.yml
permissions:
contents: read
security-events: write
actions: read
build:
name: Build Container Images
runs-on: ubuntu-latest
needs: [ ci, codeql ]
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Build and Push Container
uses: wgtechlabs/container-build-flow-action@v1.8.1
with:
registry: both
dockerhub-username: ${{ secrets.DOCKER_HUB_USERNAME }}
dockerhub-token: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
ghcr-token: ${{ github.token }}
floating-tags: true
release-platforms: linux/amd64
trivy-severity: CRITICAL
fail-on-vulnerability: true
commit-convention-enabled: true