Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .github/prompts/update-project.prompt.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ current. A newer major version may exist.
update it to the latest release tag.
- If the reference is pinned to a commit SHA, leave it as-is — do not convert SHA pins to tags.
3. Skip self-referencing actions (actions that reference the current repository, e.g.
`Ilyes512/github-actions/build-image@1.0.12`) — they are handled in Phase 4.
`specsnl/github-actions/build-image@1.0.12`) — they are handled in Phase 4.
4. Update any outdated action versions in-place across all scanned files.
5. Check `git status` for all changed files. Commit separately if there are any changes.
Commit message: `chore(deps): Update GitHub Actions versions`.
Expand Down Expand Up @@ -74,7 +74,7 @@ Commit message: `chore: Update copyright year`.
- Files to scan: same as Phase 2 (`.github/workflows/*.yml`, `.github/actions/**/*.yml`,
`*/action.yml`)
- Self-referencing actions are those that reference the current repository
(e.g., `Ilyes512/github-actions/*@<version>`)
(e.g., `specsnl/github-actions/*@<version>`)
- Update every occurrence across all files before committing — all changes go into a single commit.
5. If any files were changed, stage them all and create one commit.
Commit message: `chore: Bump self-referencing actions to <new-version>`.
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build-php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,21 +43,21 @@ jobs:
id: buildx
uses: docker/setup-buildx-action@v4
- name: Build and Push by digest (runtime)
uses: Ilyes512/github-actions/build-target@1.0.13
uses: ./build-target
with:
platform: ${{ inputs.platform }}
image-name: ${{ steps.image_name.outputs.lowercase }}
dockerfile: ${{ inputs.dockerfile }}
target: runtime
- name: Build and Push by digest (builder)
uses: Ilyes512/github-actions/build-target@1.0.13
uses: ./build-target
with:
platform: ${{ inputs.platform }}
image-name: ${{ steps.image_name.outputs.lowercase }}
dockerfile: ${{ inputs.dockerfile }}
target: builder
- name: Build and Push by digest (builder_nodejs)
uses: Ilyes512/github-actions/build-target@1.0.13
uses: ./build-target
with:
platform: ${{ inputs.platform }}
image-name: ${{ steps.image_name.outputs.lowercase }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
with:
string: ${{ inputs.image-name }}
- name: Build and Push by digest
uses: Ilyes512/github-actions/build-image@1.0.13
uses: ./build-image
with:
dockerfile: ${{ inputs.dockerfile }}
platform: ${{ inputs.platform }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/merge-php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,21 +59,21 @@ jobs:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v4
- name: Create Manifest (runtime)
uses: Ilyes512/github-actions/create-manifest-for-target@1.0.13
uses: ./create-manifest-for-target
with:
image-name: ${{ steps.image_name.outputs.lowercase }}
target: runtime
description: ${{ inputs.description-runtime }}
title: ${{ inputs.title-runtime }}
- name: Create Manifest (builder)
uses: Ilyes512/github-actions/create-manifest-for-target@1.0.13
uses: ./create-manifest-for-target
with:
image-name: ${{ steps.image_name.outputs.lowercase }}
target: builder
description: ${{ inputs.description-builder }}
title: ${{ inputs.title-builder }}
- name: Create Manifest (builder_nodejs)
uses: Ilyes512/github-actions/create-manifest-for-target@1.0.13
uses: ./create-manifest-for-target
with:
image-name: ${{ steps.image_name.outputs.lowercase }}
target: builder_nodejs
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v4
- name: Create Manifest
uses: Ilyes512/github-actions/create-manifest@1.0.13
uses: ./create-manifest
with:
image-name: ${{ steps.image_name.outputs.lowercase }}
title: ${{ inputs.title }}
Expand Down