-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
Update remaining actions #4949
Update remaining actions #4949
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ jobs: | |
env: | ||
CLANG_VERSION: 10 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
- name: Check levelization | ||
run: Builds/levelization/levelization.sh | ||
- name: Check for differences | ||
|
@@ -18,7 +18,7 @@ jobs: | |
git diff --exit-code | tee "levelization.patch" | ||
- name: Upload patch | ||
if: failure() && steps.assert.outcome == 'failure' | ||
uses: actions/upload-artifact@v2 | ||
uses: actions/upload-artifact@v3 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Should this be v4? |
||
continue-on-error: true | ||
with: | ||
name: levelization.patch | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -83,7 +83,7 @@ jobs: | |
with: | ||
configuration: ${{ matrix.configuration }} | ||
- name: upload archive | ||
uses: actions/upload-artifact@v4 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. These look like they've been downgraded There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Deliberately so. The upgrade was just yesterday and some runners are failing to run v4. It is making the CI unreliable. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. These runners have been seen breaking on download-artifact@v4: heavy-wsnnk-kcbnl Failing runners are running version 2.300.2. Passing runners are running 2.314.1. Until we get every runner on version >= 2.314.1, I think it's best to downgrade the action. |
||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: ${{ matrix.platform }}-${{ matrix.compiler }}-${{ matrix.configuration }} | ||
path: conan.tar | ||
|
@@ -112,7 +112,7 @@ jobs: | |
build_dir: .build | ||
steps: | ||
- name: download cache | ||
uses: actions/download-artifact@v4 | ||
uses: actions/download-artifact@v3 | ||
with: | ||
name: ${{ matrix.platform }}-${{ matrix.compiler }}-${{ matrix.configuration }} | ||
- name: extract cache | ||
|
@@ -161,7 +161,7 @@ jobs: | |
build_dir: .build | ||
steps: | ||
- name: download cache | ||
uses: actions/download-artifact@v4 | ||
uses: actions/download-artifact@v3 | ||
with: | ||
name: ${{ matrix.platform }}-${{ matrix.compiler }}-${{ matrix.configuration }} | ||
- name: extract cache | ||
|
@@ -201,7 +201,7 @@ jobs: | |
run: | | ||
mv "${build_dir}/coverage.xml" ./ | ||
- name: archive coverage report | ||
uses: actions/upload-artifact@v4 | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: coverage.xml | ||
path: coverage.xml | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should this be v4?