Skip to content

Commit 0a7da69

Browse files
captbaritonefacebook-github-bot
authored andcommitted
Update action dependencies (#4957)
Summary: I suspect the current CI failures are related to actions/setup-node#1275 (comment) Pull Request resolved: #4957 Test Plan: JS tests in GitHub CI have gone back to green: {F1977224794} Reviewed By: tyao1, lynnshaoyu Differential Revision: D73214700 Pulled By: captbaritone fbshipit-source-id: 9645f2b19b16d8156eb4cbdcd790bf9d992005a0
1 parent 543918e commit 0a7da69

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

.github/workflows/ci.yml

+15-15
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ jobs:
1515
run:
1616
working-directory: ./vscode-extension
1717
steps:
18-
- uses: actions/checkout@v2
19-
- uses: actions/setup-node@v2
18+
- uses: actions/checkout@v4
19+
- uses: actions/setup-node@v4
2020
with:
2121
node-version: 20.x
2222
cache: 'yarn'
@@ -36,8 +36,8 @@ jobs:
3636
matrix:
3737
node-version: [18.x, 20.x]
3838
steps:
39-
- uses: actions/checkout@v2
40-
- uses: actions/setup-node@v2
39+
- uses: actions/checkout@v4
40+
- uses: actions/setup-node@v4
4141
with:
4242
node-version: ${{ matrix.node-version }}
4343
cache: 'yarn'
@@ -50,8 +50,8 @@ jobs:
5050
name: JS Lint
5151
runs-on: ubuntu-latest
5252
steps:
53-
- uses: actions/checkout@v2
54-
- uses: actions/setup-node@v2
53+
- uses: actions/checkout@v4
54+
- uses: actions/setup-node@v4
5555
with:
5656
node-version: 20.x
5757
cache: 'yarn'
@@ -68,8 +68,8 @@ jobs:
6868
name: Flow Typecheck
6969
runs-on: ubuntu-latest
7070
steps:
71-
- uses: actions/checkout@v2
72-
- uses: actions/setup-node@v2
71+
- uses: actions/checkout@v4
72+
- uses: actions/setup-node@v4
7373
with:
7474
node-version: 20.x
7575
cache: 'yarn'
@@ -92,7 +92,7 @@ jobs:
9292
os: windows-latest
9393
runs-on: ${{ matrix.target.os }}
9494
steps:
95-
- uses: actions/checkout@v2
95+
- uses: actions/checkout@v4
9696
- uses: actions-rs/toolchain@v1
9797
with:
9898
# Should stay in sync with fbcode/buck2/rust-toolchain
@@ -118,7 +118,7 @@ jobs:
118118
# os: windows-latest
119119
runs-on: ${{ matrix.target.os }}
120120
steps:
121-
- uses: actions/checkout@v2
121+
- uses: actions/checkout@v4
122122
- uses: actions-rs/toolchain@v1
123123
with:
124124
# Should stay in sync with fbcode/buck2/rust-toolchain
@@ -139,7 +139,7 @@ jobs:
139139
name: Rust Lint
140140
runs-on: ubuntu-latest
141141
steps:
142-
- uses: actions/checkout@v2
142+
- uses: actions/checkout@v4
143143
- uses: actions-rs/toolchain@v1
144144
with:
145145
# Should stay in sync with tools/third-party/rustfmt/.rustfmt-version
@@ -181,7 +181,7 @@ jobs:
181181
artifact-name: relay-bin-win-x64
182182
runs-on: ${{ matrix.target.os }}
183183
steps:
184-
- uses: actions/checkout@v2
184+
- uses: actions/checkout@v4
185185
- uses: actions-rs/toolchain@v1
186186
with:
187187
# Should stay in sync with fbcode/buck2/rust-toolchain
@@ -190,7 +190,7 @@ jobs:
190190
toolchain: nightly-2024-10-13
191191
override: true
192192
target: ${{ matrix.target.target }}
193-
- uses: actions/setup-node@v2
193+
- uses: actions/setup-node@v4
194194
if: github.event_name == 'push' && github.repository == 'facebook/relay' && github.ref == 'refs/heads/main'
195195
with:
196196
node-version: 20.x
@@ -230,8 +230,8 @@ jobs:
230230
if: github.event_name == 'push' && github.repository == 'facebook/relay'
231231
needs: [js-tests, js-lint, typecheck, build-tests, build-compiler]
232232
steps:
233-
- uses: actions/checkout@v2
234-
- uses: actions/setup-node@v2
233+
- uses: actions/checkout@v4
234+
- uses: actions/setup-node@v4
235235
with:
236236
node-version: 18.x
237237
registry-url: https://registry.npmjs.org/

0 commit comments

Comments
 (0)