We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 339f0cb commit 489b320Copy full SHA for 489b320
.github/workflows/container.yml
@@ -15,12 +15,13 @@ jobs:
15
outputs:
16
run-approved: ${{ steps.confirm-run.outputs.run-approved }}
17
steps:
18
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v4
19
- id: confirm-run
20
continue-on-error: true
21
name: Check last commit is <24h old
22
if: ${{ github.event_name == 'schedule' }}
23
- run: test -z $(git ref-list --after="24 hours" ${{ github.sha }}) && echo "::set-output name=run-approved::false"
+ run: |
24
+ test -z $(git ref-list --after="24 hours" ${{ github.sha }}) && echo "run-approved=false" >> $GITHUB_OUTPUT
25
26
build-container:
27
name: Build and push container
0 commit comments