Skip to content

Commit

Permalink
regenerate github actions to update actions/upload-artifact version
Browse files Browse the repository at this point in the history
Summary:
X-link: facebook/sapling#946

Fix github jobs [failing with errors](https://github.com/facebook/mvfst/actions/runs/10855890595/job/30129430199)  like `Error: This request has been automatically failed because it uses a deprecated version of `actions/upload-artifact: v2`. Learn more: https://github.blog/changelog/2024-02-13-deprecation-notice-v1-and-v2-of-the-artifact-actions/`

Regenerated actions with: `./opensource/fbcode_builder/getdeps/facebook/update-all-github-actions.sh`

This also shows some changes from D62399390 as actions weren't fully regenerated on that diff.

Reviewed By: JakobDegen

Differential Revision: D62685074

fbshipit-source-id: b6735022e7f58274b3f78f289b72ae7b2c8d9d7b
  • Loading branch information
ahornby authored and facebook-github-bot committed Sep 14, 2024
1 parent ff93c6d commit 158e69c
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/getdeps_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ jobs:
run: python3 build/fbcode_builder/getdeps.py fetch --no-tests boost
- name: Fetch double-conversion
run: python3 build/fbcode_builder/getdeps.py fetch --no-tests double-conversion
- name: Fetch fast_float
run: python3 build/fbcode_builder/getdeps.py fetch --no-tests fast_float
- name: Fetch gflags
run: python3 build/fbcode_builder/getdeps.py fetch --no-tests gflags
- name: Fetch glog
Expand All @@ -46,6 +48,10 @@ jobs:
run: python3 build/fbcode_builder/getdeps.py fetch --no-tests lz4
- name: Fetch snappy
run: python3 build/fbcode_builder/getdeps.py fetch --no-tests snappy
- name: Fetch openssl
run: python3 build/fbcode_builder/getdeps.py fetch --no-tests openssl
- name: Fetch liboqs
run: python3 build/fbcode_builder/getdeps.py fetch --no-tests liboqs
- name: Fetch autoconf
run: python3 build/fbcode_builder/getdeps.py fetch --no-tests autoconf
- name: Fetch automake
Expand Down Expand Up @@ -84,6 +90,8 @@ jobs:
run: python3 build/fbcode_builder/getdeps.py build --no-tests boost
- name: Build double-conversion
run: python3 build/fbcode_builder/getdeps.py build --no-tests double-conversion
- name: Build fast_float
run: python3 build/fbcode_builder/getdeps.py build --no-tests fast_float
- name: Build gflags
run: python3 build/fbcode_builder/getdeps.py build --no-tests gflags
- name: Build glog
Expand All @@ -98,6 +106,10 @@ jobs:
run: python3 build/fbcode_builder/getdeps.py build --no-tests lz4
- name: Build snappy
run: python3 build/fbcode_builder/getdeps.py build --no-tests snappy
- name: Build openssl
run: python3 build/fbcode_builder/getdeps.py build --no-tests openssl
- name: Build liboqs
run: python3 build/fbcode_builder/getdeps.py build --no-tests liboqs
- name: Build autoconf
run: python3 build/fbcode_builder/getdeps.py build --no-tests autoconf
- name: Build automake
Expand Down Expand Up @@ -126,7 +138,7 @@ jobs:
run: python3 build/fbcode_builder/getdeps.py build --src-dir=. katran --project-install-prefix katran:/usr/local
- name: Copy artifacts
run: python3 build/fbcode_builder/getdeps.py fixup-dyn-deps --strip --src-dir=. katran _artifacts/linux --project-install-prefix katran:/usr/local --final-install-prefix /usr/local
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: katran
path: _artifacts
Expand Down

0 comments on commit 158e69c

Please sign in to comment.