Skip to content

Commit

Permalink
Update GitHub Actions to use Node 20
Browse files Browse the repository at this point in the history
Node 16 has reached its end of life and GitHub has started its
deprecation process. The workflows were previously using actions
based on Node 16. Updating to actions versions based on Node 20
ensures ongoing support and security updates.

No side effects are anticipated with this change.

https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/
  • Loading branch information
karolszafranski committed Jul 17, 2024
1 parent e0aa06b commit dbeb7c4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-2.x-nightly-ios-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
fastlane_user: ${{ secrets.TABRIS_IOS_FASTLANE_USER }}

- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: 2.x-nightly
path: tabris-js-hello-world
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-3.x-nightly-ios-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
fastlane_user: ${{ secrets.TABRIS_IOS_FASTLANE_USER }}

- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: 3.x-nightly
path: tabris-js-hello-world
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-master-ios-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
fastlane_user: ${{ secrets.TABRIS_IOS_FASTLANE_USER }}

- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: master
path: tabris-js-hello-world
Expand Down

0 comments on commit dbeb7c4

Please sign in to comment.