Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(ci): Bump action dependencies for node profiling #10473

Merged
merged 2 commits into from
Feb 6, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 7 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -554,6 +554,8 @@ jobs:
with:
node-version: 20
- uses: actions/setup-python@v5
with:
python-version: '3.11.7'
- name: Restore caches
uses: ./.github/actions/restore-cache
env:
Expand Down Expand Up @@ -1316,20 +1318,20 @@ jobs:
ln -sf python3 /usr/bin/python

- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
ref: ${{ env.HEAD_COMMIT }}

- name: Restore dependency cache
uses: actions/cache/restore@v3
uses: actions/cache/restore@v4
id: restore-dependencies
with:
path: ${{ env.CACHED_DEPENDENCY_PATHS }}
key: ${{ needs.job_install_deps.outputs.dependency_cache_key }}
enableCrossOsArchive: true

- name: Restore build cache
uses: actions/cache/restore@v3
uses: actions/cache/restore@v4
id: restore-build
with:
path: ${{ env.CACHED_BUILD_PATHS }}
Expand All @@ -1348,14 +1350,14 @@ jobs:
run: yarn config set network-timeout 600000 -g

- name: Setup python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
if: ${{ !contains(matrix.container, 'alpine') }}
id: python-setup
with:
python-version: '3.8.10'

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

Expand Down
Loading