Skip to content

Commit

Permalink
[actions] update steps (#7)
Browse files Browse the repository at this point in the history
Should fix warnings:

    Node.js 16 actions are deprecated. Please update the following actions
    to use Node.js 20: actions/checkout@v3, actions/upload-artifact@v2. For
    more information see:
    https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.

    The following actions uses node12 which is deprecated and will be forced
    to run on node16: actions/upload-artifact@v2. For more info:
    https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
  • Loading branch information
jonathanpeppers authored Feb 1, 2024
1 parent 9022245 commit 0e9b75b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
steps:

- name: checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: run dev container
uses: devcontainers/[email protected]
Expand All @@ -28,7 +28,7 @@ jobs:
./gradlew assembleRelease
- name: archive artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: outputs
path: Native/app/build/outputs
Expand Down

0 comments on commit 0e9b75b

Please sign in to comment.