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
4 changes: 2 additions & 2 deletions .github/workflows/build-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
branches: ["master"]
jobs:
build:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04.5
steps:
- name: Check Out Repo
uses: actions/checkout@v2
Expand All @@ -24,7 +24,7 @@ jobs:
tags: ${{ secrets.DOCKERHUB_USERNAME }}/bridge:${{ github.sha }}
deploy:
needs: build
runs-on: ubuntu-latest
runs-on: ubuntu-22.04.5
environment:
name: production
steps:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-and-publish-preview.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
branches: ["master"]
jobs:
build:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04.5
steps:
- name: Check Out Repo
uses: actions/checkout@v2
Expand All @@ -24,7 +24,7 @@ jobs:
tags: ${{ secrets.DOCKERHUB_USERNAME }}/${{ github.event.repository.name }}-dev:${{ github.sha }}
dispatch_update_preview_image:
needs: build
runs-on: ubuntu-latest
runs-on: ubuntu-22.04.5
steps:
- name: Dispatch Update Preview Image Command
uses: myrotvorets/trigger-repository-dispatch-action@1.0.0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
- 'master'
jobs:
test:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04.5
permissions:
contents: read
packages: read
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/clean-up-pr-preview.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
types: [closed]
jobs:
dispatch_cleanup_deployment:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04.5
steps:
- name: Dispatch Cleanup Preview Repository Command
uses: myrotvorets/trigger-repository-dispatch-action@1.0.0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ on:
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
runs-on: ubuntu-22.04.5
permissions:
actions: read
contents: read
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/deploy-pr-preview.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
types: [opened, reopened, synchronize, ready_for_review]
jobs:
build:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04.5
steps:
- name: Check Out Repo
uses: actions/checkout@v2
Expand All @@ -24,7 +24,7 @@ jobs:
tags: ${{ secrets.DOCKERHUB_USERNAME }}/${{ github.event.repository.name }}-dev:preview-${{ github.event.number }}-${{ github.event.pull_request.head.sha }}
add_ready_for_preview_label:
if: github.event.pull_request.draft == false
runs-on: ubuntu-latest
runs-on: ubuntu-22.04.5
needs: build
steps:
- uses: actions-ecosystem/action-add-labels@v1
Expand All @@ -33,7 +33,7 @@ jobs:
ready-for-preview
dispatch_update_deployment:
needs: add_ready_for_preview_label
runs-on: ubuntu-latest
runs-on: ubuntu-22.04.5
if: ${{ contains(github.event.pull_request.labels.*.name, 'deployed') }}
steps:
- name: Dispatch Update Preview Repository Command
Expand Down Expand Up @@ -68,7 +68,7 @@ jobs:
}
dispatch_check_deployment:
needs: add_ready_for_preview_label
runs-on: ubuntu-latest
runs-on: ubuntu-22.04.5
if: ${{ contains(github.event.pull_request.labels.*.name, 'preview') }}
steps:
- name: Dispatch Check Preview Repository Command
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pre-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
matrix:
node-version: [16.x]
runs-on: ubuntu-latest
runs-on: ubuntu-22.04.5
steps:
- name: Check Out Repo
uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/slash-command-dispatcher.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
types: [created]
jobs:
slash_command_dispatch:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04.5
if: ${{ contains(github.event.issue.labels.*.name, 'deployed') || contains(github.event.issue.labels.*.name, 'preview') }}
steps:
- name: Slash Command Dispatch
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sonar-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
matrix:
node-version: [16.x]
name: SonarCloud
runs-on: ubuntu-latest
runs-on: ubuntu-22.04.5
steps:
- uses: actions/checkout@v3
with:
Expand Down
Loading
Loading