Skip to content

Commit 2ecb851

Browse files
Update remaining actions (#4949)
Downgrade {upload,download}-artifact action to v3 because of unreliability with v4.
1 parent 2ffead7 commit 2ecb851

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/workflows/clang-format.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
env:
99
CLANG_VERSION: 10
1010
steps:
11-
- uses: actions/checkout@v3
11+
- uses: actions/checkout@v4
1212
- name: Install clang-format
1313
run: |
1414
codename=$( lsb_release --codename --short )
@@ -30,7 +30,7 @@ jobs:
3030
git diff --exit-code | tee "clang-format.patch"
3131
- name: Upload patch
3232
if: failure() && steps.assert.outcome == 'failure'
33-
uses: actions/upload-artifact@v2
33+
uses: actions/upload-artifact@v3
3434
continue-on-error: true
3535
with:
3636
name: clang-format.patch

.github/workflows/doxygen.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
image: docker://rippleci/rippled-ci-builder:2944b78d22db
1818
steps:
1919
- name: checkout
20-
uses: actions/checkout@v3
20+
uses: actions/checkout@v4
2121
- name: check environment
2222
run: |
2323
echo ${PATH} | tr ':' '\n'

.github/workflows/levelization.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
env:
99
CLANG_VERSION: 10
1010
steps:
11-
- uses: actions/checkout@v3
11+
- uses: actions/checkout@v4
1212
- name: Check levelization
1313
run: Builds/levelization/levelization.sh
1414
- name: Check for differences
@@ -18,7 +18,7 @@ jobs:
1818
git diff --exit-code | tee "levelization.patch"
1919
- name: Upload patch
2020
if: failure() && steps.assert.outcome == 'failure'
21-
uses: actions/upload-artifact@v2
21+
uses: actions/upload-artifact@v3
2222
continue-on-error: true
2323
with:
2424
name: levelization.patch

.github/workflows/nix.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ jobs:
8383
with:
8484
configuration: ${{ matrix.configuration }}
8585
- name: upload archive
86-
uses: actions/upload-artifact@v4
86+
uses: actions/upload-artifact@v3
8787
with:
8888
name: ${{ matrix.platform }}-${{ matrix.compiler }}-${{ matrix.configuration }}
8989
path: conan.tar
@@ -112,7 +112,7 @@ jobs:
112112
build_dir: .build
113113
steps:
114114
- name: download cache
115-
uses: actions/download-artifact@v4
115+
uses: actions/download-artifact@v3
116116
with:
117117
name: ${{ matrix.platform }}-${{ matrix.compiler }}-${{ matrix.configuration }}
118118
- name: extract cache
@@ -161,7 +161,7 @@ jobs:
161161
build_dir: .build
162162
steps:
163163
- name: download cache
164-
uses: actions/download-artifact@v4
164+
uses: actions/download-artifact@v3
165165
with:
166166
name: ${{ matrix.platform }}-${{ matrix.compiler }}-${{ matrix.configuration }}
167167
- name: extract cache
@@ -201,7 +201,7 @@ jobs:
201201
run: |
202202
mv "${build_dir}/coverage.xml" ./
203203
- name: archive coverage report
204-
uses: actions/upload-artifact@v4
204+
uses: actions/upload-artifact@v3
205205
with:
206206
name: coverage.xml
207207
path: coverage.xml

0 commit comments

Comments
 (0)