@@ -108,7 +108,7 @@ jobs:
108108 runs-on: ubuntu-latest
109109 steps:
110110 - name: Checkout repository
111- uses: actions/checkout@v5
111+ uses: actions/checkout@v6
112112 - name: Change something
113113 run: |
114114 find . -type f -name "*.md" -print0 | xargs -0 sed -i "s/foo/bar/g"
@@ -132,7 +132,7 @@ jobs:
132132 runs-on: ubuntu-latest
133133 steps:
134134 - name: Checkout repository
135- uses: actions/checkout@v5
135+ uses: actions/checkout@v6
136136 - name: Change something
137137 run: |
138138 find . -type f -name "*.md" -print0 | xargs -0 sed -i "s/foo/bar/g"
@@ -171,7 +171,7 @@ jobs:
171171 runs-on: ubuntu-latest
172172 steps:
173173 - name: Checkout repository with full history
174- uses: actions/checkout@v5
174+ uses: actions/checkout@v6
175175 with:
176176 fetch-depth: 0 # Required for force_with_lease
177177 - name: Make some changes
@@ -277,7 +277,7 @@ jobs:
277277 action-commit-push:
278278 runs-on: ubuntu-latest
279279 steps:
280- - uses: actions/checkout@v5
280+ - uses: actions/checkout@v6
281281
282282 - uses: devops-infra/action-commit-push@v1.3.1
283283 id: Pin patch version
@@ -304,6 +304,29 @@ If you have any questions or need help, please:
304304- 📝 Create an [issue](https://github.com/devops-infra/action-commit-push/issues)
305305- 🌟 Star this repository if you find it useful!
306306
307+ # # 🧪 End-to-End Validation
308+ Use the manual workflow `.github/workflows/manual-e2e-validate.yml` to validate this action against the centralized E2E repository.
309+
310+ - ` mode=ref` validates ref-oriented E2E paths against stable pinned action refs.
311+ - ` mode=image` is wired but currently placeholder-only in the central E2E workflow for this action.
312+
313+ CI/CD automation also runs these E2E checks automatically :
314+
315+ - Pull requests : E2E validation runs through reusable org workflows.
316+ - Release branch prepare : E2E validation runs against release candidate refs.
317+ - Release create : E2E validation runs against production release refs.
318+
319+ Example trigger inputs :
320+
321+ ` ` ` text
322+ mode=ref
323+ ` ` `
324+
325+ ` ` ` text
326+ mode=image
327+ image_tag=v1.2.3-test
328+ ` ` `
329+
307330# # Forking
308331To publish images from a fork, set these variables so Task uses your registry identities :
309332` DOCKER_USERNAME` , `DOCKER_ORG_NAME`, `GITHUB_USERNAME`, `GITHUB_ORG_NAME`.
0 commit comments