Skip to content

Auto Update

Auto Update #139

Workflow file for this run

name: Auto Update
on:
workflow_dispatch:
schedule:
- cron: "0 0 * * 0"
jobs:
auto-update:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
token: ${{ secrets.GH_PAT }}
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 'stable'
cache: false
- name: Install Packwiz
run: go install github.com/packwiz/packwiz@latest
- name: Update
run: |
sudo chmod +x update-all.sh
./update-all.sh
- name: Commit Updates
uses: EndBug/[email protected]
with:
default_author: github_actions