Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
version: 2
updates:
# Maintain dependencies for GitHub Actions.
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
cooldown:
default-days: 7
ignore:
- dependency-name: "yiisoft/*"
4 changes: 3 additions & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
permissions:
contents: read

on:

Check warning on line 6 in .github/workflows/docker.yml

View workflow job for this annotation

GitHub Actions / zizmor / Run zizmor 🌈

concurrency-limits

docker.yml:6: insufficient job-level concurrency limits: workflow is missing concurrency setting
pull_request: &ignore-paths
paths-ignore:
- ".bowerrc"
Expand All @@ -25,12 +25,14 @@
push: *ignore-paths

jobs:
apache:

Check notice on line 28 in .github/workflows/docker.yml

View workflow job for this annotation

GitHub Actions / zizmor / Run zizmor 🌈

anonymous-definition

docker.yml:28: workflow or action definition without a name: this job
runs-on: ubuntu-latest

steps:
- name: Checkout.
uses: actions/checkout@v6
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10

Check warning on line 33 in .github/workflows/docker.yml

View workflow job for this annotation

GitHub Actions / zizmor / Run zizmor 🌈

ref-version-mismatch

docker.yml:33: action's hash pin has mismatched or missing version comment: missing version comment
with:
persist-credentials: false

- name: Build and start containers.
run: docker compose up -d --build --wait
Expand Down
22 changes: 22 additions & 0 deletions .github/workflows/zizmor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: GitHub Actions Security Analysis with zizmor 🌈

on:
push:
branches:
- master
- main
paths:
- '.github/**.yml'
- '.github/**.yaml'
pull_request:
paths:
- '.github/**.yml'
- '.github/**.yaml'

permissions:
actions: read # Required by zizmor when reading workflow metadata through the API.
contents: read # Required to read workflow files.

jobs:
zizmor:
uses: yiisoft/actions/.github/workflows/zizmor.yml@master
Loading