Skip to content
Merged
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
18 changes: 9 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Install Rust (${{ matrix.rust }})
uses: actions-rust-lang/setup-rust-toolchain@v1
Expand Down Expand Up @@ -74,7 +74,7 @@ jobs:
RUSTC_BOOTSTRAP: ${{ matrix.rustc_bootstrap }}
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Install Rust (${{ matrix.rust }})
uses: actions-rust-lang/setup-rust-toolchain@v1
Expand Down Expand Up @@ -126,7 +126,7 @@ jobs:

- name: Upload Binaries as GitHub artifact
if: matrix.rust == 'nightly'
uses: actions/upload-artifact@v4.6.0
uses: actions/upload-artifact@v7
with:
name: git-remote-codecommit-${{ matrix.os }}
path: |
Expand All @@ -146,7 +146,7 @@ jobs:

- name: Upload Documentation as GitHub artifact
if: ${{ matrix.os == 'ubuntu-latest' && matrix.rust == 'nightly'}}
uses: actions/upload-artifact@v4.6.0
uses: actions/upload-artifact@v7
with:
name: docs
path: target/doc
Expand Down Expand Up @@ -192,14 +192,14 @@ jobs:

- name: Upload out if failed
if: failure()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: coverage-failure-${{ matrix.rust }}-${{ matrix.os }}${{ matrix.rust != 'nightly' && matrix.rustc_bootstrap == '1' && '-bootstrap' || '' }}
path: target/debug/build/git-remote-codecommit-*
retention-days: 1

- name: Archive code coverage results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: code-coverage-report-${{ matrix.rust }}-${{ matrix.os }}${{ matrix.rust != 'nightly' && matrix.rustc_bootstrap == '1' && '-bootstrap' || '' }}
path: target/debug/coverage/html/
Expand All @@ -226,7 +226,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Set carryforward
id: set_carryforward
run: |
Expand All @@ -250,7 +250,7 @@ jobs:
AWS_REGION: us-west-2
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0 # need the history in order to push to CodeCommit

Expand All @@ -261,7 +261,7 @@ jobs:
aws-region: ${{ env.AWS_REGION }}

- name: Download git-remote-codecommit
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: git-remote-codecommit-ubuntu-latest
path: target/release-lto
Expand Down
Loading