Skip to content

Commit 47293dd

Browse files
committed
chores: update checkout and setup node versions
1 parent 3ecf1f3 commit 47293dd

File tree

5 files changed

+17
-9
lines changed

5 files changed

+17
-9
lines changed

.github/workflows/label-pr.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@ jobs:
1212
build:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v2
15+
- name: 'Checkout'
16+
uses: actions/checkout@v3
17+
1618
- name: Add label to PR
1719
uses: UcheSylvester/pr-labelr@v0.1.1
1820
with:

.github/workflows/lint.yml

+5-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,11 @@ jobs:
1515
runs-on: ubuntu-latest
1616

1717
steps:
18-
- uses: actions/checkout@v2
19-
- uses: actions/setup-node@v2
18+
- name: 'Checkout'
19+
uses: actions/checkout@v3
20+
21+
- name: 'Setup node'
22+
uses: actions/setup-node@v3
2023
with:
2124
node-version: 18
2225
cache: 'yarn'

.github/workflows/main.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Checkout repository
16-
uses: actions/checkout@v2
16+
uses: actions/checkout@v3
1717
with:
1818
fetch-depth: 0
1919

.github/workflows/tests.yml

+5-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,11 @@ jobs:
1515
main:
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/checkout@v2
19-
- uses: actions/setup-node@v2
18+
- name: 'Checkout'
19+
uses: actions/checkout@v3
20+
21+
- name: 'Setup Node'
22+
uses: actions/setup-node@v3
2023
with:
2124
node-version: 18
2225
cache: 'yarn'

yarn.lock

+3-3
Original file line numberDiff line numberDiff line change
@@ -848,9 +848,9 @@
848848
integrity sha512-MMzuxN3GdFwskAnb6fz0orFvhfqi752yjaXylr0Rp4oDg5H0Zn1IuyRhDVvYOwAXoJirx2xuS16I3WjxnAIHiQ==
849849

850850
"@types/stack-utils@^2.0.0":
851-
version "2.0.2"
852-
resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-2.0.2.tgz#01284dde9ef4e6d8cef6422798d9a3ad18a66f8b"
853-
integrity sha512-g7CK9nHdwjK2n0ymT2CW698FuWJRIx+RP6embAzZ2Qi8/ilIrA1Imt2LVSeHUzKvpoi7BhmmQcXz95eS0f2JXw==
851+
version "2.0.3"
852+
resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-2.0.3.tgz#6209321eb2c1712a7e7466422b8cb1fc0d9dd5d8"
853+
integrity sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==
854854

855855
"@types/yargs-parser@*":
856856
version "21.0.2"

0 commit comments

Comments
 (0)