Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade Github Actions #411

Merged
merged 1 commit into from Dec 30, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
12 changes: 5 additions & 7 deletions .github/workflows/dbus-rs-github-ci.yml
Expand Up @@ -24,7 +24,7 @@ jobs:
repo: cross
matches: ${{ matrix.platform }}
token: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
name: cross-${{ matrix.platform }}
path: ${{ steps.cross.outputs.install_path }}
Expand All @@ -43,13 +43,11 @@ jobs:
- uses: actions/checkout@v3
with:
submodules: 'recursive'
- uses: actions-rs/toolchain@v1
- uses: dtolnay/rust-toolchain@stable
with:
profile: minimal
toolchain: stable
override: true
- name: Download Cross
uses: actions/download-artifact@v1
uses: actions/download-artifact@v3
with:
name: cross-linux-musl
path: /tmp
Expand Down Expand Up @@ -77,7 +75,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Install dependencies
run: |
sudo apt-get update
Expand Down Expand Up @@ -106,7 +104,7 @@ jobs:
mingw-w64-x86_64-dbus
mingw-w64-x86_64-pkgconf
mingw-w64-x86_64-rust
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Run tests
run: |
# dbus-daemon has no '--fork' option on windows. But it will autolaunch
Expand Down