Skip to content

Commit 86b3e28

Browse files
author
Automated Release
committed
Update base image to use stable branch 'release-0.23'
Signed-off-by: Automated Release <release@submariner.io>
1 parent 22248e1 commit 86b3e28

File tree

8 files changed

+18
-18
lines changed

8 files changed

+18
-18
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.23
15+
if: ${{ github.base_ref != 'release-0.23' }}
1616
run: exit 1

.github/workflows/coderabbit-review.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ permissions:
1010

1111
jobs:
1212
trigger-review:
13-
uses: submariner-io/submariner-bot/.github/workflows/coderabbit-trigger.yml@devel
13+
uses: submariner-io/submariner-bot/.github/workflows/coderabbit-trigger.yml@release-0.23
1414
with:
1515
pr_number: ${{ github.event.pull_request.number }}
1616
secrets: inherit

.github/workflows/e2e.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
1717

1818
- name: Build the images if necessary
19-
uses: submariner-io/shipyard/gh-actions/cache-images@devel
19+
uses: submariner-io/shipyard/gh-actions/cache-images@release-0.23
2020

2121
# Both E2E jobs have the same name; the default job is un-suffixed, the full jobs are suffixed with their matrix combination
2222
e2e-default:
@@ -29,11 +29,11 @@ jobs:
2929
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
3030

3131
- name: Run E2E deployment and tests
32-
uses: submariner-io/shipyard/gh-actions/e2e@devel
32+
uses: submariner-io/shipyard/gh-actions/e2e@release-0.23
3333

3434
- name: Post mortem
3535
if: failure()
36-
uses: submariner-io/shipyard/gh-actions/post-mortem@devel
36+
uses: submariner-io/shipyard/gh-actions/post-mortem@release-0.23
3737

3838
e2e-full:
3939
name: E2E
@@ -60,14 +60,14 @@ jobs:
6060
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
6161

6262
- name: Run E2E deployment and tests
63-
uses: submariner-io/shipyard/gh-actions/e2e@devel
63+
uses: submariner-io/shipyard/gh-actions/e2e@release-0.23
6464
with:
6565
k8s_version: ${{ matrix.k8s_version }}
6666
using: ${{ matrix.ip_family }} ${{ matrix.globalnet }}
6767

6868
- name: Post mortem
6969
if: failure()
70-
uses: submariner-io/shipyard/gh-actions/post-mortem@devel
70+
uses: submariner-io/shipyard/gh-actions/post-mortem@release-0.23
7171
conformance-test:
7272
name: MCS Conformance
7373
needs: images
@@ -113,4 +113,4 @@ jobs:
113113
114114
- name: Post mortem
115115
if: failure()
116-
uses: submariner-io/shipyard/gh-actions/post-mortem@devel
116+
uses: submariner-io/shipyard/gh-actions/post-mortem@release-0.23

.github/workflows/flake_finder.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ jobs:
2828
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
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.23
3232
with:
3333
using: ${{ matrix.deploytool }} ${{ matrix.globalnet }}
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.23

.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.23
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.23
2626
with:
2727
username: ${{ secrets.QUAY_USERNAME }}
2828
password: ${{ secrets.QUAY_PASSWORD }}

.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.23
88
- release-*
99

1010
permissions: {}

.github/workflows/upgrade-e2e.yml

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

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

88
permissions: {}
99

@@ -19,8 +19,8 @@ jobs:
1919
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
2020

2121
- name: Install an old cluster, upgrade it and check it
22-
uses: submariner-io/shipyard/gh-actions/upgrade-e2e@devel
22+
uses: submariner-io/shipyard/gh-actions/upgrade-e2e@release-0.23
2323

2424
- name: Post Mortem
2525
if: failure()
26-
uses: submariner-io/shipyard/gh-actions/post-mortem@devel
26+
uses: submariner-io/shipyard/gh-actions/post-mortem@release-0.23

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.23
22
export BASE_BRANCH
33

44
ifneq (,$(DAPPER_HOST_ARCH))

0 commit comments

Comments
 (0)