We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3c4f4f6 commit 4809931Copy full SHA for 4809931
1 file changed
.github/workflows/check-golangupx-release.yml
@@ -2,8 +2,8 @@ name: Check for new Golang upx releases
2
3
on:
4
schedule:
5
- # Run every 24 hours
6
- - cron: '0 0 * * *'
+ # Run every sunday
+ - cron: '0 0 * * 0'
7
workflow_dispatch: # Allow manual trigger
8
9
jobs:
@@ -76,11 +76,12 @@ jobs:
76
runs-on: ubuntu-latest
77
permissions:
78
contents: write
79
+ actions: write
80
steps:
81
- name: Checkout repository
82
uses: actions/checkout@v4
83
with:
- token: ${{ secrets.GITHUB_TOKEN }}
84
+ token: ${{ secrets.PUSH_WORKFLOW }}
85
86
- name: Update Dockerfile
87
run: |
0 commit comments