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

[GA] Update actions to node20 versions #2897

Merged
merged 1 commit into from
Feb 8, 2024
Merged
Show file tree
Hide file tree
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
22 changes: 11 additions & 11 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ jobs:
shell: bash
steps:
- name: Checkout Repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Initialize Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: 3.8

Expand Down Expand Up @@ -104,7 +104,7 @@ jobs:

steps:
- name: Get Source
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup Environment
run: |
Expand All @@ -118,7 +118,7 @@ jobs:
fi

- name: ccache cache files
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: .ccache
key: ${{ runner.os }}-cmake-${{ matrix.config.name }}-ccache
Expand Down Expand Up @@ -204,7 +204,7 @@ jobs:

steps:
- name: Get Source
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup Environment
run: |
Expand All @@ -219,7 +219,7 @@ jobs:
fi

- name: ccache cache files
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
.ccache
Expand Down Expand Up @@ -335,15 +335,15 @@ jobs:

steps:
- name: Get Source
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup Environment
run: |
sudo apt-get update
sudo apt-get install --no-install-recommends --no-upgrade -qq "$APT_BASE" ${{ matrix.config.apt_get }}

- name: depends cache files
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
depends/built
Expand Down Expand Up @@ -472,7 +472,7 @@ jobs:

steps:
- name: Get Source
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup Environment
run: |
Expand All @@ -488,7 +488,7 @@ jobs:

- name: depends cache files
if: matrix.config.no_depends != 1
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
depends/built
Expand All @@ -498,7 +498,7 @@ jobs:
restore-keys: ${{ runner.os }}-depends-${{ matrix.config.host }}

- name: ccache cache files
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
.ccache
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-cache-cleanup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Cleanup
run: |
Expand Down