From 912d98481c35f42dbb0c90be540a840af34c0de2 Mon Sep 17 00:00:00 2001 From: Gabriel Omar Cotelli Date: Tue, 12 Mar 2024 10:37:18 -0300 Subject: [PATCH 1/2] Update actions --- .github/workflows/loading-groups.yml | 2 +- .github/workflows/loading-gs64-components.yml | 2 +- .github/workflows/markdown-lint.yml | 2 +- .github/workflows/unit-tests-gs64.yml | 2 +- .github/workflows/unit-tests.yml | 2 +- LICENSE | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/loading-groups.yml b/.github/workflows/loading-groups.yml index 9582b17..0362203 100644 --- a/.github/workflows/loading-groups.yml +++ b/.github/workflows/loading-groups.yml @@ -22,7 +22,7 @@ jobs: - tools name: ${{ matrix.smalltalk }} + ${{ matrix.load-spec }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: hpi-swa/setup-smalltalkCI@v1 with: smalltalk-image: ${{ matrix.smalltalk }} diff --git a/.github/workflows/loading-gs64-components.yml b/.github/workflows/loading-gs64-components.yml index 810b080..34d9c40 100644 --- a/.github/workflows/loading-gs64-components.yml +++ b/.github/workflows/loading-gs64-components.yml @@ -15,7 +15,7 @@ jobs: - Deployment name: GS64 + ${{ matrix.load-spec }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Load component in image uses: ba-st-actions/gs64-ci@v2 with: diff --git a/.github/workflows/markdown-lint.yml b/.github/workflows/markdown-lint.yml index 29b9002..84e4633 100644 --- a/.github/workflows/markdown-lint.yml +++ b/.github/workflows/markdown-lint.yml @@ -8,7 +8,7 @@ jobs: name: runner / markdownlint runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: markdownlint uses: reviewdog/action-markdownlint@v0 with: diff --git a/.github/workflows/unit-tests-gs64.yml b/.github/workflows/unit-tests-gs64.yml index 1e5bc67..3f81f32 100644 --- a/.github/workflows/unit-tests-gs64.yml +++ b/.github/workflows/unit-tests-gs64.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest name: GS64 Unit Tests steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Load Image and Run Tests uses: ba-st-actions/gs64-ci@v2 with: diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index e4635e2..53b5a2d 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -16,7 +16,7 @@ jobs: - Pharo64-11 name: ${{ matrix.smalltalk }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: hpi-swa/setup-smalltalkCI@v1 with: smalltalk-image: ${{ matrix.smalltalk }} diff --git a/LICENSE b/LICENSE index 0615bb2..c66233b 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2019-2023 Buenos Aires Smalltalk Contributors +Copyright (c) 2019-2024 Buenos Aires Smalltalk Contributors Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal From 3521ca7da0fefa3bc09ae3d7ee06c186e8f691b7 Mon Sep 17 00:00:00 2001 From: Gabriel Omar Cotelli Date: Tue, 12 Mar 2024 10:47:02 -0300 Subject: [PATCH 2/2] Improve test --- source/Hyperspace-Model-Tests/RetryTest.class.st | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/Hyperspace-Model-Tests/RetryTest.class.st b/source/Hyperspace-Model-Tests/RetryTest.class.st index 2c26337..992200b 100644 --- a/source/Hyperspace-Model-Tests/RetryTest.class.st +++ b/source/Hyperspace-Model-Tests/RetryTest.class.st @@ -104,7 +104,7 @@ RetryTest >> testExponentialBackoff [ self assert: count equals: 3; - assert: runtime milliSeconds > ( 50 + 100 ) milliSeconds + assert: runtime milliSeconds >= (50 + 150) milliSeconds ] { #category : #'tests - configuring wait time' }