Skip to content

Commit

Permalink
Update checkout actions to stable version that supports node 20 (#48)
Browse files Browse the repository at this point in the history
Signed-off-by: Michiel Mulders <michielmulders1@gmail.com>
  • Loading branch information
michielmulders authored Apr 15, 2024
1 parent 43ad22a commit 2228e7d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/flow-pull-request-checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ jobs:
node-version: [18, 20]
steps:
- name: Checkout repository
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # pin@v3
uses: actions/checkout@v3 # pin@v3

- name: Setup Node ${{ matrix.node-version }}
uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # pin@v3
uses: actions/setup-node@v4 # pin@v4
with:
node-version: ${{ matrix.node-version }}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/flow-release-artifact.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: [self-hosted, Linux, medium, ephemeral]
steps:
- name: Checkout repository
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # pin@v3
uses: actions/checkout@v3 # pin@v3

- name: Install JQ and SED
run: |
Expand All @@ -38,7 +38,7 @@ jobs:
[[ "$PACKAGE_VERSION" == "$RELEASE_VERSION" ]] && echo "Versions match $RELEASE_VERSION" || (echo "Package version is: $PACKAGE_VERSION and Release tag is: $RELEASE_VERSION"; exit 1)
- name: Setup Node 20
uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # pin@v3
uses: actions/setup-node@v4 # pin@v4
with:
node-version: 20
registry-url: https://registry.npmjs.org
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hashgraph/nft-utilities",
"version": "3.0.0",
"version": "3.0.2",
"description": "NFT Utilities for Hedera Hashgraph",
"author": "Michiel Mulders",
"license": "Apache License",
Expand Down

0 comments on commit 2228e7d

Please sign in to comment.