Skip to content

Commit

Permalink
Update base image to use stable branch 'release-0.20'
Browse files Browse the repository at this point in the history
Signed-off-by: Automated Release <[email protected]>
  • Loading branch information
Automated Release committed Feb 5, 2025
1 parent 4e34c92 commit ca5d51e
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 17 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ jobs:
name: PR targets branch
runs-on: ubuntu-latest
steps:
- name: Check that the PR targets devel
if: ${{ github.base_ref != 'devel' }}
- name: Check that the PR targets release-0.20
if: ${{ github.base_ref != 'release-0.20' }}
run: exit 1
10 changes: 5 additions & 5 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683

- name: Build the images if necessary
uses: submariner-io/shipyard/gh-actions/cache-images@devel
uses: submariner-io/shipyard/gh-actions/cache-images@release-0.20

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

- name: Run E2E deployment and tests
uses: submariner-io/shipyard/gh-actions/e2e@devel
uses: submariner-io/shipyard/gh-actions/e2e@release-0.20

- name: Post mortem
if: failure()
uses: submariner-io/shipyard/gh-actions/post-mortem@devel
uses: submariner-io/shipyard/gh-actions/post-mortem@release-0.20

e2e-full:
name: E2E
Expand Down Expand Up @@ -67,10 +67,10 @@ jobs:
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683

- name: Run E2E deployment and tests
uses: submariner-io/shipyard/gh-actions/e2e@devel
uses: submariner-io/shipyard/gh-actions/e2e@release-0.20
with:
using: ${{ matrix.globalnet }} ${{ matrix.cable-driver }} ${{ matrix.extra-toggles }}

- name: Post mortem
if: failure()
uses: submariner-io/shipyard/gh-actions/post-mortem@devel
uses: submariner-io/shipyard/gh-actions/post-mortem@release-0.20
4 changes: 2 additions & 2 deletions .github/workflows/flake_finder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ jobs:
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683

- name: Run E2E deployment and tests
uses: submariner-io/shipyard/gh-actions/e2e@devel
uses: submariner-io/shipyard/gh-actions/e2e@release-0.20
with:
using: ${{ matrix.cable-driver }} ${{ matrix.extra-toggles }}

- name: Post mortem
if: failure()
uses: submariner-io/shipyard/gh-actions/post-mortem@devel
uses: submariner-io/shipyard/gh-actions/post-mortem@release-0.20
2 changes: 1 addition & 1 deletion .github/workflows/periodic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Update internal submariner-io/* dependencies to latest
run: |
for dep in $(awk '!/module/ && /github.com.submariner-io/ { print $1 }' go.mod)
do go get ${dep}@devel
do go get ${dep}@release-0.20
done
- name: Create Pull Request
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
workflow_dispatch:
push:
branches:
- devel
- release-0.20
- release-*

permissions: {}
Expand All @@ -22,7 +22,7 @@ jobs:
fetch-depth: 0

- name: Build and release new images
uses: submariner-io/shipyard/gh-actions/release-images@devel
uses: submariner-io/shipyard/gh-actions/release-images@release-0.20
with:
username: ${{ secrets.QUAY_USERNAME }}
password: ${{ secrets.QUAY_PASSWORD }}
2 changes: 1 addition & 1 deletion .github/workflows/report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name: Reporting
on:
push:
branches:
- devel
- release-0.20
- release-*

permissions: {}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/upgrade-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Upgrade

on:
pull_request:
branches: [devel]
branches: [release-0.20]

permissions: {}

Expand All @@ -19,8 +19,8 @@ jobs:
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683

- name: Install an old cluster, upgrade it and check it
uses: submariner-io/shipyard/gh-actions/upgrade-e2e@devel
uses: submariner-io/shipyard/gh-actions/upgrade-e2e@release-0.20

- name: Post Mortem
if: failure()
uses: submariner-io/shipyard/gh-actions/post-mortem@devel
uses: submariner-io/shipyard/gh-actions/post-mortem@release-0.20
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
BASE_BRANCH ?= devel
BASE_BRANCH ?= release-0.20
export BASE_BRANCH

# Running in Dapper
Expand Down

0 comments on commit ca5d51e

Please sign in to comment.