Skip to content

Commit

Permalink
build(ci): Bump action dependencies for node profiling (#10473)
Browse files Browse the repository at this point in the history
Noticed warnings in GH for these, so bumping all of these to latest.
  • Loading branch information
mydea committed Feb 6, 2024
1 parent 05fb074 commit 1a4b6e6
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -566,6 +566,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 @@ -1346,20 +1348,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 @@ -1378,14 +1380,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

0 comments on commit 1a4b6e6

Please sign in to comment.