Skip to content

Commit 1e08605

Browse files
author
Automated Release
committed
Update base image to use stable branch 'release-0.22'
Signed-off-by: Automated Release <[email protected]>
1 parent 39729d2 commit 1e08605

File tree

10 files changed

+19
-19
lines changed

10 files changed

+19
-19
lines changed

.github/workflows/branch.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ jobs:
1111
name: PR targets branch
1212
runs-on: ubuntu-latest
1313
steps:
14-
- name: Check that the PR targets devel
15-
if: ${{ github.base_ref != 'devel' }}
14+
- name: Check that the PR targets release-0.22
15+
if: ${{ github.base_ref != 'release-0.22' }}
1616
run: exit 1

.github/workflows/e2e-full.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ jobs:
2828
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
2929

3030
- name: Run E2E deployment and tests
31-
uses: submariner-io/shipyard/gh-actions/e2e@devel
31+
uses: submariner-io/shipyard/gh-actions/e2e@release-0.22
3232
with:
3333
using: ${{ matrix.globalnet }} ${{ matrix.lighthouse }} ${{ matrix.ovn }}
3434

3535
- name: Post mortem
3636
if: failure()
37-
uses: submariner-io/shipyard/gh-actions/post-mortem@devel
37+
uses: submariner-io/shipyard/gh-actions/post-mortem@release-0.22

.github/workflows/e2e.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ jobs:
1616
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
1717

1818
- name: Run E2E deployment and tests
19-
uses: submariner-io/shipyard/gh-actions/e2e@devel
19+
uses: submariner-io/shipyard/gh-actions/e2e@release-0.22
2020

2121
- name: Post mortem
2222
if: failure()
23-
uses: submariner-io/shipyard/gh-actions/post-mortem@devel
23+
uses: submariner-io/shipyard/gh-actions/post-mortem@release-0.22

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
workflow_dispatch:
66
push:
77
branches:
8-
- devel
8+
- release-0.22
99
- release-*
1010

1111
permissions: {}
@@ -22,7 +22,7 @@ jobs:
2222
fetch-depth: 0
2323

2424
- name: Build and release new images
25-
uses: submariner-io/shipyard/gh-actions/release-images@devel
25+
uses: submariner-io/shipyard/gh-actions/release-images@release-0.22
2626
with:
2727
username: ${{ secrets.QUAY_USERNAME }}
2828
password: ${{ secrets.QUAY_PASSWORD }}

.github/workflows/release_subctl_on_push.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
---
2-
name: Release Subctl devel
2+
name: Release Subctl release-0.22
33

44
on:
55
push:
66
branches:
7-
- devel
7+
- release-0.22
88

99
permissions:
1010
contents: write

.github/workflows/report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ name: Reporting
44
on:
55
push:
66
branches:
7-
- devel
7+
- release-0.22
88
- release-*
99

1010
permissions: {}

.github/workflows/system.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ jobs:
2323
run: make using="${{ matrix.using }}" cmd/bin/non_deploy_subctl
2424

2525
- name: Deploy the environment and run the tests
26-
uses: submariner-io/shipyard/gh-actions/e2e@devel
26+
uses: submariner-io/shipyard/gh-actions/e2e@release-0.22
2727
with:
2828
target: system-test
2929
using: ${{ matrix.using }}
3030

3131
- name: Post mortem
3232
if: failure()
33-
uses: submariner-io/shipyard/gh-actions/post-mortem@devel
33+
uses: submariner-io/shipyard/gh-actions/post-mortem@release-0.22

.github/workflows/upgrade-e2e.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ name: Upgrade
44
on:
55
pull_request:
66
types: [ready_for_review, opened, reopened, synchronize, converted_to_draft, labeled]
7-
branches: [devel]
7+
branches: [release-0.22]
88

99
permissions: {}
1010

@@ -23,8 +23,8 @@ jobs:
2323
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
2424

2525
- name: Install an old cluster, upgrade it and check it
26-
uses: submariner-io/shipyard/gh-actions/upgrade-e2e@devel
26+
uses: submariner-io/shipyard/gh-actions/upgrade-e2e@release-0.22
2727

2828
- name: Post mortem
2929
if: failure()
30-
uses: submariner-io/shipyard/gh-actions/post-mortem@devel
30+
uses: submariner-io/shipyard/gh-actions/post-mortem@release-0.22

.github/workflows/upgrade-subctl.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Upgrade command
33

44
on:
55
pull_request:
6-
branches: [devel]
6+
branches: [release-0.22]
77

88
permissions: {}
99

@@ -44,4 +44,4 @@ jobs:
4444

4545
- name: Post mortem
4646
if: failure()
47-
uses: submariner-io/shipyard/gh-actions/post-mortem@devel
47+
uses: submariner-io/shipyard/gh-actions/post-mortem@release-0.22

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
BASE_BRANCH ?= devel
1+
BASE_BRANCH ?= release-0.22
22
# Denotes the default operator image version, exposed as a variable for the automated release
33
DEFAULT_IMAGE_VERSION ?= $(BASE_BRANCH)
44
export BASE_BRANCH

0 commit comments

Comments
 (0)