Skip to content

chore(deps-dev): bump markdown-to-jsx from 7.3.2 to 7.5.0 #31

chore(deps-dev): bump markdown-to-jsx from 7.3.2 to 7.5.0

chore(deps-dev): bump markdown-to-jsx from 7.3.2 to 7.5.0 #31

name: Container Images CI
on:
pull_request:
paths-ignore:
- 'rust/**'
- 'livestream/**'
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
posthog_build:
name: Build Docker image
runs-on: ubuntu-latest
permissions:
id-token: write # allow issuing OIDC tokens for this workflow run
contents: read # allow at least reading the repo contents, add other permissions if necessary
steps:
# If this run wasn't initiated by PostHog Bot (meaning: snapshot update),
# cancel previous runs of snapshot update-inducing workflows
- uses: n1hility/cancel-previous-runs@v3
if: github.actor != 'posthog-bot'
with:
token: ${{ secrets.GITHUB_TOKEN }}
workflow: .github/workflows/storybook-chromatic.yml
- uses: n1hility/cancel-previous-runs@v3
if: github.actor != 'posthog-bot'
with:
token: ${{ secrets.GITHUB_TOKEN }}
workflow: .github/workflows/ci-backend.yml
- name: Check out
uses: actions/checkout@v3
- name: Build and cache Docker image in Depot
uses: ./.github/actions/build-n-cache-image
with:
actions-id-token-request-url: ${{ env.ACTIONS_ID_TOKEN_REQUEST_URL }}
deploy_preview:

Check failure on line 45 in .github/workflows/container-images-ci.yml

View workflow run for this annotation

GitHub Actions / Container Images CI

Invalid workflow file

The workflow is not valid. .github/workflows/container-images-ci.yml (Line: 45, Col: 5): Error calling workflow 'codeflash-ai/posthog/.github/workflows/pr-deploy.yml@5aebb89955bbd9b529e77df1ab21c98f799a381a'. The nested job 'deploy_preview' is requesting 'deployments: write, id-token: write', but is only allowed 'deployments: none, id-token: none'.
name: Deploy preview environment
uses: ./.github/workflows/pr-deploy.yml
needs: [posthog_build]
secrets: inherit
if: ${{ contains(github.event.pull_request.labels.*.name, 'deploy') }}
lint:
name: Lint changed Dockerfiles
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Check if any Dockerfile has changed
id: changed-files
uses: tj-actions/changed-files@v43
with:
files: |
**/Dockerfile
**/*.Dockerfile
**/Dockerfile.*
separator: ' '
- name: Lint changed Dockerfile(s) with Hadolint
uses: jbergstroem/hadolint-gh-action@v1
if: steps.changed-files.outputs.any_changed == 'true'
with:
dockerfile: '${{ steps.changed-files.outputs.all_modified_files }}'