Skip to content

chore: bump @typescript-eslint/parser from 8.8.0 to 8.8.1 #458

chore: bump @typescript-eslint/parser from 8.8.0 to 8.8.1

chore: bump @typescript-eslint/parser from 8.8.0 to 8.8.1 #458

Workflow file for this run

name: Prerelease
on:
pull_request:
push:
branches: [master]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
permissions:
packages: write
jobs:
docker:
runs-on: ubuntu-latest
if: ${{ github.actor != 'dependabot[bot]' && github.actor != 'tiltcamp-bot' }}
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '18.x'
cache: 'yarn'
- run: yarn install --immutable
- run: yarn build
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
with:
platforms: 'arm64,arm'
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Generate tags (alpine)
id: alpine_docker_tags
uses: docker/metadata-action@v5
with:
images: |
ghcr.io/mattwebbio/orbital-sync
tags: |
type=ref,event=branch
type=ref,event=pr
type=sha
- name: Build and push (alpine)
uses: docker/build-push-action@v6
with:
context: .
cache-from: type=gha
cache-to: type=gha,mode=max
build-args: |
BASE_IMAGE=node:18-alpine
push: true
tags: ${{ steps.alpine_docker_tags.outputs.tags }}
labels: ${{ steps.alpine_docker_tags.outputs.labels }}
platforms: |
linux/amd64
linux/arm64
linux/arm
- name: Generate tags (distroless)
id: distroless_docker_tags
uses: docker/metadata-action@v5
with:
images: |
ghcr.io/mattwebbio/orbital-sync
tags: |
type=ref,event=branch
type=ref,event=pr
type=sha
flavor: |
suffix=-distroless,onlatest=true
- name: Build and push (distroless)
uses: docker/build-push-action@v6
with:
context: .
cache-from: type=gha
cache-to: type=gha,mode=max
build-args: |
BASE_IMAGE=gcr.io/distroless/nodejs18:latest
push: true
tags: ${{ steps.distroless_docker_tags.outputs.tags }}
labels: ${{ steps.distroless_docker_tags.outputs.labels }}
platforms: |
linux/amd64
linux/arm64
linux/arm