Skip to content
Closed
Show file tree
Hide file tree
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
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ concurrency:
jobs:

tests:
runs-on: parity-ubuntu
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
Expand All @@ -40,7 +40,7 @@ jobs:
if: github.event_name == 'workflow_dispatch'
permissions:
contents: write
runs-on: parity-ubuntu
runs-on: ubuntu-latest
env:
VERSION: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.tag_name || github.sha }}
steps:
Expand Down Expand Up @@ -74,7 +74,7 @@ jobs:
docker-build:
needs: [tests]
if: github.event_name == 'workflow_dispatch' || contains(github.event.pull_request.labels.*.name, 'image-push') || github.event_name == 'push'
runs-on: parity-ubuntu
runs-on: ubuntu-latest
environment: ${{ github.event_name == 'workflow_dispatch' && 'main' || null }}
env:
REGISTRY_PATH: docker.io/${{ github.event_name == 'workflow_dispatch' && 'paritytech' || 'paritypr' }}/cattery
Expand Down
2 changes: 1 addition & 1 deletion src/lib/trayManager/trayManager.go
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ func (tm *TrayManager) DeleteTray(trayId string) (*trays.Tray, error) {

func (tm *TrayManager) HandleStale(ctx context.Context) {

var interval = time.Minute * 2
var interval = time.Minute * 5

go func() {
for {
Expand Down