Skip to content

Commit ac10749

Browse files
committed
update various github actions
1 parent bc468db commit ac10749

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- windows_x86_64
2222
runs-on: windows-2019
2323
steps:
24-
- uses: actions/checkout@v2
24+
- uses: actions/checkout@v4
2525
- name: Disk Cleanup
2626
run: |
2727
Get-PSDrive
@@ -39,7 +39,7 @@ jobs:
3939
Get-PSDrive
4040
- run: "& .\\build.${{ matrix.name }}.ps1 \"${{ github.event.inputs.commitHash }}\""
4141
- name: Upload Artifact
42-
uses: actions/upload-artifact@v1
42+
uses: actions/upload-artifact@v4
4343
with:
4444
name: webrtc.${{ matrix.name }}.bz2
4545
path: build\_package\${{ matrix.name }}\webrtc.tar.bz2
@@ -56,13 +56,13 @@ jobs:
5656
# - ios
5757
runs-on: macos-11
5858
steps:
59-
- uses: actions/checkout@v2
59+
- uses: actions/checkout@v4
6060
- name: Select Xcode 13.0
6161
run: sudo xcode-select --switch /Applications/Xcode_13.0.app/Contents/Developer
6262
- run: brew install ninja
6363
- run: ./build.${{ matrix.name }}.sh "${{ github.event.inputs.commitHash }}"
6464
- name: Upload Artifact
65-
uses: actions/upload-artifact@v1
65+
uses: actions/upload-artifact@v4
6666
with:
6767
name: webrtc.${{ matrix.name }}.tar.bz2
6868
path: build/_package/${{ matrix.name }}/webrtc.tar.bz2
@@ -87,7 +87,7 @@ jobs:
8787
- android_prefixed
8888
runs-on: buildjet-4vcpu-ubuntu-2204
8989
steps:
90-
- uses: actions/checkout@v2
90+
- uses: actions/checkout@v4
9191
- name: Disk Cleanup
9292
run: |
9393
df -h
@@ -100,7 +100,7 @@ jobs:
100100
df -h
101101
- run: ./build.${{ matrix.name }}.sh "${{ github.event.inputs.commitHash }}"
102102
- name: Upload Artifact
103-
uses: actions/upload-artifact@v1
103+
uses: actions/upload-artifact@v4
104104
with:
105105
name: webrtc.${{ matrix.name }}.tar.bz2
106106
path: build/_package/${{ matrix.name }}/webrtc.tar.bz2

.github/workflows/release.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
# - windows_x86
1919
runs-on: windows-2019
2020
steps:
21-
- uses: actions/checkout@v2
21+
- uses: actions/checkout@v4
2222
- name: Determine Release Tag
2323
env:
2424
RELEASE: ${{ github.ref_name }}
@@ -44,7 +44,7 @@ jobs:
4444
Get-PSDrive
4545
- run: "& .\\build.${{ matrix.name }}.ps1 \"${{ steps.release_tag.outputs.tag }}_release\""
4646
- name: Upload Artifact
47-
uses: actions/upload-artifact@v1
47+
uses: actions/upload-artifact@v4
4848
with:
4949
name: webrtc.${{ matrix.name }}.tar.bz2
5050
path: build\_package\${{ matrix.name }}\webrtc.tar.bz2
@@ -61,7 +61,7 @@ jobs:
6161
# - ios
6262
runs-on: macos-11
6363
steps:
64-
- uses: actions/checkout@v2
64+
- uses: actions/checkout@v4
6565
- name: Select Xcode 13.0
6666
run: sudo xcode-select --switch /Applications/Xcode_13.0.app/Contents/Developer
6767
- run: brew install ninja
@@ -74,7 +74,7 @@ jobs:
7474
echo "tag=${RELEASE}" >> "VERSION"
7575
- run: ./build.${{ matrix.name }}.sh "${{ steps.release_tag.outputs.tag }}_release"
7676
- name: Upload Artifact
77-
uses: actions/upload-artifact@v1
77+
uses: actions/upload-artifact@v4
7878
with:
7979
name: webrtc.${{ matrix.name }}.tar.bz2
8080
path: build/_package/${{ matrix.name }}/webrtc.tar.bz2
@@ -98,7 +98,7 @@ jobs:
9898
- android
9999
runs-on: buildjet-4vcpu-ubuntu-2204
100100
steps:
101-
- uses: actions/checkout@v2
101+
- uses: actions/checkout@v4
102102
- name: Disk Cleanup
103103
run: |
104104
df -h
@@ -118,7 +118,7 @@ jobs:
118118
echo "tag=${RELEASE}" >> "VERSION"
119119
- run: ./build.${{ matrix.name }}.sh "${{ steps.release_tag.outputs.tag }}_release"
120120
- name: Upload Artifact
121-
uses: actions/upload-artifact@v1
121+
uses: actions/upload-artifact@v4
122122
with:
123123
name: webrtc.${{ matrix.name }}.tar.bz2
124124
path: build/_package/${{ matrix.name }}/webrtc.tar.bz2
@@ -151,9 +151,9 @@ jobs:
151151
runs-on: ubuntu-latest
152152
steps:
153153
- name: Checkout code
154-
uses: actions/checkout@v2
154+
uses: actions/checkout@v4
155155
- name: Download ${{ matrix.name }}
156-
uses: actions/download-artifact@v1
156+
uses: actions/download-artifact@v4
157157
with:
158158
name: webrtc.${{ matrix.name }}.tar.bz2
159159
- name: Upload ${{ matrix.name }} Release Asset

0 commit comments

Comments
 (0)