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

chore: pin github actions by commit hash #2648

Merged
merged 9 commits into from
Dec 14, 2023
2 changes: 1 addition & 1 deletion .github/workflows/release_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
ref: ${{ env.BASE_BRANCH }}
fetch-depth: 0
- name: Set up Ruby
uses: ruby/setup-ruby@v1
uses: ruby/setup-ruby@8575951200e472d5f2d95c625da0c7bec8217c42 # v1.161.0
with:
ruby-version: 2.7
- name: Install dependencies
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ import io.mockk.every
import io.mockk.mockk
import io.mockk.slot
import io.mockk.verify
import kotlin.time.Duration.Companion.seconds
import kotlinx.coroutines.ExperimentalCoroutinesApi
import kotlinx.coroutines.test.UnconfinedTestDispatcher
import kotlinx.coroutines.test.runTest
Expand Down Expand Up @@ -115,7 +116,7 @@ internal class AWSCloudWatchLoggingPluginImplementationTest {
}

@Test
fun `on flush logs error`() = runTest {
fun `on flush logs error`() = runTest(timeout = 30.seconds) {
val onSuccess = mockk<Action>()
val onError = mockk<Consumer<AmplifyException>>()
val exception = slot<AmplifyException>()
Expand Down
Loading