Skip to content

Commit

Permalink
ci: update actions
Browse files Browse the repository at this point in the history
Signed-off-by: Connor Smith <[email protected]>
  • Loading branch information
connorsmith256 authored and brooksmtownsend committed Oct 19, 2023
1 parent e0f9bc1 commit 4bae1ad
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:
e2e_test: [e2e_multiple_hosts, e2e_multitenant, e2e_upgrades]

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

- name: Install latest Rust stable toolchain
uses: actions-rs/toolchain@v1
uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
default: true
Expand All @@ -38,7 +38,7 @@ jobs:

# if the previous step fails, upload logs
- name: Upload logs for debugging
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
if: ${{ failure() && steps.test.outcome == 'failure' }}
with:
name: e2e-logs-${{ matrix.e2e_test }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
targetPath: "target/aarch64-apple-darwin/release/",
}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: set the release version (tag)
if: startsWith(github.ref, 'refs/tags/v')
Expand Down Expand Up @@ -166,7 +166,7 @@ jobs:
if: startsWith(github.ref, 'refs/tags/v')
needs: build
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install latest Rust stable toolchain
uses: dtolnay/rust-toolchain@stable
with:
Expand All @@ -186,7 +186,7 @@ jobs:
env:
RELEASE_VERSION: ${{ needs.build.outputs.version_output }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up QEMU
uses: docker/setup-qemu-action@v2
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:
nats_version: [2.9.15]

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

- name: Install latest Rust stable toolchain
uses: actions-rs/toolchain@v1
uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
default: true
Expand Down

0 comments on commit 4bae1ad

Please sign in to comment.