Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/actions/build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ runs:
version=$(cargo metadata --format-version 1 --no-deps | jq -r '.packages[] | select(.name == "wg-nord") | .version')
echo "tarball_name=wg-nord-$version-${{ inputs.target }}.tar.gz" >> $GITHUB_ENV
shell: bash
- uses: Swatinem/rust-cache@23bce251a8cd2ffc3c1075eaa2367cf899916d84
- uses: Swatinem/rust-cache@779680da715d629ac1d338a641029a2f4372abb5
with:
key: ${{ inputs.target }}
- name: Install Rust toolchain for ${{ inputs.target }}
Expand All @@ -44,7 +44,7 @@ runs:
- name: Compress binary
run: tar -czvf ${{ env.tarball_name }} --directory ${{ env.binary_directory }} ${{ env.binary_name }}
shell: bash
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
path: ${{ env.tarball_name }}
name: ${{ env.tarball_name }}
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: Swatinem/rust-cache@23bce251a8cd2ffc3c1075eaa2367cf899916d84
- uses: actions/checkout@v6
- uses: Swatinem/rust-cache@779680da715d629ac1d338a641029a2f4372abb5
- name: Format
run: cargo fmt --check
- name: Clippy
Expand All @@ -24,8 +24,8 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: Swatinem/rust-cache@23bce251a8cd2ffc3c1075eaa2367cf899916d84
- uses: actions/checkout@v6
- uses: Swatinem/rust-cache@779680da715d629ac1d338a641029a2f4372abb5
- name: Run tests
run: cargo test --verbose --locked

Expand All @@ -49,7 +49,7 @@ jobs:
- target: x86_64-pc-windows-gnu
host: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Build
uses: ./.github/actions/build
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
host: ubuntu-latest
runs-on: ${{ matrix.host }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Build
uses: ./.github/actions/build
with:
Expand All @@ -40,8 +40,8 @@ jobs:
env:
GH_TOKEN: ${{ github.token }}
steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
- uses: actions/checkout@v6
- uses: actions/download-artifact@v6
id: download-artifacts
with:
path: artifacts/
Expand Down
Loading