Skip to content

Commit b11ae16

Browse files
committed
update versions of GitHub actions; remove Create Pull Request step in wgpu building since we just want to copy from the branch manually with appropriate history overriding to avoid bloating the repository
1 parent e35089e commit b11ae16

File tree

2 files changed

+6
-14
lines changed

2 files changed

+6
-14
lines changed

.github/workflows/build-wgpu.yml

+4-12
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ jobs:
113113
114114
steps:
115115
# Checkout
116-
- uses: actions/checkout@v3
116+
- uses: actions/checkout@v4
117117
- name: Install Rust toolchain
118118
uses: dtolnay/rust-toolchain@stable
119119
with:
@@ -163,7 +163,7 @@ jobs:
163163
164164
mv target/${{ matrix.target }}/release/libwgpu_native.a target/${{ matrix.target }}/release/${{ matrix.goos }}_${{ matrix.goarch }}_libwgpu_native.a
165165
166-
- uses: actions/upload-artifact@v3
166+
- uses: actions/upload-artifact@v4
167167
with:
168168
name: wgpu-artifacts
169169
path: |
@@ -174,9 +174,9 @@ jobs:
174174
needs: build-wgpu
175175
runs-on: ubuntu-latest
176176
steps:
177-
- uses: actions/checkout@v3
177+
- uses: actions/checkout@v4
178178

179-
- uses: actions/download-artifact@v3
179+
- uses: actions/download-artifact@v4
180180
with:
181181
name: wgpu-artifacts
182182
path: ${{ github.workspace }}/tmp
@@ -212,11 +212,3 @@ jobs:
212212
213213
rm -rf $GITHUB_WORKSPACE/tmp
214214
tree $GITHUB_WORKSPACE/wgpu
215-
216-
- name: Create Pull Request
217-
uses: peter-evans/create-pull-request@v4
218-
with:
219-
commit-message: update `wgpu-native` library
220-
branch-suffix: random
221-
title: update `wgpu-native` library
222-
body: auto-generated PR to update `wgpu-native` library

.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ jobs:
2929
run_examples: true
3030
steps:
3131
- name: Checkout
32-
uses: actions/checkout@v3
32+
uses: actions/checkout@v4
3333
- name: Setup Go
34-
uses: actions/setup-go@v3
34+
uses: actions/setup-go@v5
3535
with:
3636
go-version: "stable"
3737
- name: Setup Environment

0 commit comments

Comments
 (0)