Skip to content

Commit

Permalink
CI: update actions
Browse files Browse the repository at this point in the history
  • Loading branch information
fengalin committed Jan 30, 2024
1 parent bccc85b commit f6aeae2
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install deps
run: sudo apt install libwayland-dev libasound2-dev
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/clippy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install deps
run: sudo apt install libwayland-dev libasound2-dev
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deny.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: EmbarkStudios/cargo-deny-action@v1
with:
log-level: warn
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/fmt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install deps
run: sudo apt install libwayland-dev libasound2-dev
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install deps
run: sudo apt install libwayland-dev libasound2-dev libgl-dev libx11-xcb-dev libxcb1-dev libxcb-dri2-0-dev libxcb-icccm4-dev libxcursor-dev libxkbcommon-dev libxcb-shape0-dev libxcb-xfixes0-dev
Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:
shell: bash

- name: Upload linux packages
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ env.app_version }}-linux
path: packages/*
Expand All @@ -77,7 +77,7 @@ jobs:
runs-on: macos-11

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install latest Rust
uses: dtolnay/rust-toolchain@stable
Expand Down Expand Up @@ -139,7 +139,7 @@ jobs:
shell: bash

- name: Upload macos packages
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ env.app_version }}-macos
path: packages/*
Expand All @@ -152,7 +152,7 @@ jobs:
runs-on: windows-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Setup MSVC shell
uses: ilammy/msvc-dev-cmd@v1
Expand Down Expand Up @@ -194,7 +194,7 @@ jobs:
Get-FileHash $archive -Algorithm SHA256 > "$archive.sha256"
- name: Upload windows packages
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ env.app_version }}-windows
path: packages/*
Expand Down

0 comments on commit f6aeae2

Please sign in to comment.