mirror of
https://github.com/projectdiscovery/nuclei-templates.git
synced 2026-01-31 15:53:33 +08:00
Bumps [actions/setup-python](https://github.com/actions/setup-python) from 5 to 6. - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/setup-python dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
35 lines
909 B
YAML
35 lines
909 B
YAML
name: ✨ WordPress Plugins - Update
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "0 0 * * *"
|
|
|
|
jobs:
|
|
Update:
|
|
runs-on: ubuntu-latest
|
|
if: github.repository == 'projectdiscovery/nuclei-templates'
|
|
steps:
|
|
- name: Check out repository code
|
|
uses: actions/checkout@v5
|
|
|
|
- name: Install Python3
|
|
uses: actions/setup-python@v6
|
|
with:
|
|
python-version: "3.10"
|
|
|
|
- run: python -m pip install --upgrade pip
|
|
- run: pip install -r .github/scripts/wordpress-plugins-update-requirements.txt
|
|
|
|
- name: Update Templates
|
|
run: python3 .github/scripts/wordpress-plugins-update.py
|
|
|
|
- uses: projectdiscovery/actions/setup/git@v1
|
|
|
|
- uses: projectdiscovery/actions/commit@v1
|
|
with:
|
|
files: '.'
|
|
message: 'chore: update WordPress Plugins 🤖'
|
|
|
|
- run: git pull origin $GITHUB_REF --rebase
|
|
- run: git push origin $GITHUB_REF
|