1
0
mirror of https://github.com/facebook/proxygen.git synced 2025-08-10 05:22:59 +03:00

update to checkout@v2

Summary:
checkout@v2 is the current action version, and the old one may have
security issues. Let's just run with the latest version.

Reviewed By: ahornby

Differential Revision: D33834847

fbshipit-source-id: fba0733577bf23c208c9824aa3815bd01a813d9a
This commit is contained in:
Chad Austin
2022-02-01 09:49:33 -08:00
committed by Facebook GitHub Bot
parent 6890c35763
commit be7c9671ba
3 changed files with 3 additions and 3 deletions

View File

@@ -14,7 +14,7 @@ jobs:
build: build:
runs-on: ubuntu-18.04 runs-on: ubuntu-18.04
steps: steps:
- uses: actions/checkout@v1 - uses: actions/checkout@v2
- name: Fetch zlib - name: Fetch zlib
run: python3 build/fbcode_builder/getdeps.py fetch --no-tests zlib run: python3 build/fbcode_builder/getdeps.py fetch --no-tests zlib
- name: Fetch ninja - name: Fetch ninja

View File

@@ -14,7 +14,7 @@ jobs:
build: build:
runs-on: macOS-latest runs-on: macOS-latest
steps: steps:
- uses: actions/checkout@v1 - uses: actions/checkout@v2
- name: Fetch zlib - name: Fetch zlib
run: python3 build/fbcode_builder/getdeps.py fetch --no-tests zlib run: python3 build/fbcode_builder/getdeps.py fetch --no-tests zlib
- name: Fetch ninja - name: Fetch ninja

View File

@@ -934,7 +934,7 @@ jobs:
out.write(" build:\n") out.write(" build:\n")
out.write(" runs-on: %s\n" % runs_on) out.write(" runs-on: %s\n" % runs_on)
out.write(" steps:\n") out.write(" steps:\n")
out.write(" - uses: actions/checkout@v1\n") out.write(" - uses: actions/checkout@v2\n")
if build_opts.is_windows(): if build_opts.is_windows():
# cmake relies on BOOST_ROOT but GH deliberately don't set it in order # cmake relies on BOOST_ROOT but GH deliberately don't set it in order