Skip to content

Commit

Permalink
fix: update deploy workflow to checkout@v4
Browse files Browse the repository at this point in the history
  • Loading branch information
BernhardBaumrock committed Oct 16, 2024
1 parent 73f23de commit 5ff3cc2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,13 +45,13 @@ jobs:
steps:
- name: Checkout
if: ${{ !inputs.SUBMODULES }}
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: false

- name: Checkout with Submodules
if: ${{ inputs.SUBMODULES }}
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
token: ${{ secrets.CI_TOKEN }}
submodules: true
Expand Down

0 comments on commit 5ff3cc2

Please sign in to comment.