Skip to content

Commit

Permalink
Checkout action v3
Browse files Browse the repository at this point in the history
  • Loading branch information
leandrofavarin committed Nov 17, 2024
1 parent 05ef7bb commit 3bb989d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release-checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ name: Release Checker

on:
schedule:
- cron: '0 0 * * *' # midnights
- cron: '*/5 * * * *' # midnights

jobs:
Release-Checker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
token: ${{ secrets.REPO_SCOPED_TOKEN }}

Expand All @@ -22,7 +22,7 @@ jobs:
id: git-check
run: echo "modified=$([ -z "$(git status --porcelain)" ] && echo 'false' || echo 'true')" >> $GITHUB_OUTPUT

- name: Commit latest release version
- name: Commit & push latest release version
if: |
steps.fetch-release.outputs.success == 'true' &&
steps.git-check.outputs.modified == 'true'
Expand Down

0 comments on commit 3bb989d

Please sign in to comment.