Skip to content

Commit

Permalink
ci: update actions
Browse files Browse the repository at this point in the history
This updates the GitHub actions to avoid errors related to deprecations;
see [this example].

[this example]: https://github.com/WebAssembly/wasi-libc/actions/runs/10839597105/job/30080296576
  • Loading branch information
abrown committed Sep 12, 2024
1 parent 1b19fc6 commit 1f1b983
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- os: windows-latest
clang_version: 16.0.0
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4.1.7
with:
submodules: true

Expand Down Expand Up @@ -135,7 +135,7 @@ jobs:
# which is required by our malloc implementation.
if: matrix.os == 'ubuntu-latest' && matrix.clang_version != '10.0.0'

- uses: actions/upload-artifact@v1
- uses: actions/upload-artifact@v4.4.0
with:
# Upload the sysroot folder. Give it a name according to the OS it was built for.
name: ${{ format( 'sysroot-{0}.tgz', matrix.os) }}
Expand All @@ -152,7 +152,7 @@ jobs:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4.1.7
with:
submodules: true
- name: Install Rust (rustup)
Expand All @@ -175,7 +175,7 @@ jobs:
name: Rustfmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4.1.7
with:
submodules: true
- name: Install Rust
Expand Down

0 comments on commit 1f1b983

Please sign in to comment.