Skip to content
Merged
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
7 changes: 4 additions & 3 deletions .github/workflows/check-golangupx-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ name: Check for new Golang upx releases

on:
schedule:
# Run every 24 hours
- cron: '0 0 * * *'
# Run every sunday
- cron: '0 0 * * 0'
workflow_dispatch: # Allow manual trigger

jobs:
Expand Down Expand Up @@ -76,11 +76,12 @@ jobs:
runs-on: ubuntu-latest
permissions:
contents: write
actions: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
token: ${{ secrets.PUSH_WORKFLOW }}

- name: Update Dockerfile
run: |
Expand Down
Loading