Skip to content

Commit

Permalink
CI: Update first-party GitHub Actions
Browse files Browse the repository at this point in the history
Update first-party GitHub Actions from v2/v3 to v4. This should reduce
warnings on CI.
  • Loading branch information
RytoEX authored and derrod committed Apr 15, 2024
1 parent 353778a commit a4741ae
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Update rust toolchain
run: rustup toolchain install stable --profile minimal
Expand All @@ -27,7 +27,7 @@ jobs:
run: cargo build -r

- name: Upload results
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: bouf-build-${{ matrix.os }}
path: target/release/bouf*
Expand All @@ -45,7 +45,7 @@ jobs:
sparse-checkout: 'extra/nsis'

- name: Download artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4

- name: Package binaries
run: |
Expand Down Expand Up @@ -82,7 +82,7 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Update rust toolchain
run: rustup toolchain install stable --profile minimal
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/clippy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
statuses: write
steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Install Rust toolchain
uses: actions-rs/toolchain@16499b5e05bf2e26879000db0c1d13f7e13fa3af #@v1
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/full_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
name: Prepare OBS Release
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Update rust toolchain
run: rustup toolchain install stable --profile minimal
Expand Down Expand Up @@ -51,7 +51,7 @@ jobs:
run: target/release/bouf --config extra/ci/config.toml --version 29.1.0-beta4 -i test/new -p test/old -o test/out --clear-output

- name: Upload results
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: obs_distribution
path: test/out

0 comments on commit a4741ae

Please sign in to comment.