Skip to content

Commit

Permalink
Update build_iAPS.yml (Artificial-Pancreas#557)
Browse files Browse the repository at this point in the history
Replaced actions/checkout@v3 with actions/checkout@v4 to avoid build errors "Node.js 16 actions are deprecated".
  • Loading branch information
SteveAnderson authored Feb 28, 2024
1 parent 6f58d53 commit 559093e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build_iAPS.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ jobs:
if: |
needs.check_alive_and_permissions.outputs.WORKFLOW_PERMISSION == 'true' &&
(vars.SCHEDULED_BUILD != 'false' || vars.SCHEDULED_SYNC != 'false')
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
token: ${{ secrets.GH_PAT }}
ref: alive
Expand Down Expand Up @@ -142,7 +142,7 @@ jobs:
if: |
needs.check_alive_and_permissions.outputs.WORKFLOW_PERMISSION == 'true' &&
vars.SCHEDULED_SYNC == 'true'
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
token: ${{ secrets.GH_PAT }}
ref: ${{ env.TARGET_BRANCH }}
Expand Down Expand Up @@ -182,7 +182,7 @@ jobs:
echo "NEW_COMMITS=${{ steps.sync.outputs.has_new_commits }}" >> $GITHUB_OUTPUT
- name: Checkout Repo for building
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
token: ${{ secrets.GH_PAT }}
submodules: recursive
Expand Down

0 comments on commit 559093e

Please sign in to comment.