Skip to content

Commit 3da147d

Browse files
authored
chore: prepare release for version v0.26.0 (#638)
<!-- markdownlint-disable MD041 --> #### What this PR does / why we need it Add release nodes and switch to large runner to avoid action failures. #### Which issue(s) this PR fixes <!-- Usage: `Fixes #<issue number>`, or `Fixes (paste link of issue)`. -->
1 parent 1ed8f70 commit 3da147d

File tree

5 files changed

+38
-4
lines changed

5 files changed

+38
-4
lines changed

.github/workflows/check-manifest-generation-diff.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,10 @@ permissions:
1010
jobs:
1111
diff-check-manifests:
1212
name: Check for diff
13-
runs-on: ubuntu-latest
13+
runs-on: large_runner
1414
steps:
15+
- name: Self Hosted Runner Post Job Cleanup Action
16+
uses: TooMuch4U/actions-clean@9b358e33df99574ac0bdf2e92fa3db1ae1415563
1517
- name: Checkout
1618
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
1719
with:

.github/workflows/e2e.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,10 @@ permissions:
2323

2424
jobs:
2525
run-e2e-suite:
26-
runs-on: ubuntu-latest
26+
runs-on: large_runner
2727
steps:
28+
- name: Self Hosted Runner Post Job Cleanup Action
29+
uses: TooMuch4U/actions-clean@9b358e33df99574ac0bdf2e92fa3db1ae1415563
2830
- name: Checkout
2931
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
3032
- name: Setup Go

.github/workflows/tests.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,10 @@ permissions:
2020

2121
jobs:
2222
run-test-suite:
23-
runs-on: ubuntu-latest
23+
runs-on: large_runner
2424
steps:
25+
- name: Self Hosted Runner Post Job Cleanup Action
26+
uses: TooMuch4U/actions-clean@9b358e33df99574ac0bdf2e92fa3db1ae1415563
2527
- name: Checkout
2628
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
2729
- name: Setup Go

docs/release_notes/v0.26.0.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# Release v0.26.0
2+
3+
- chore: upgrade ocm version (#635)
4+
- chore: upgrade to ocm version 0.14.0 (after restructure) (#632)
5+
- chore: upgrade ocm (#630)
6+
- chore: update workflow paths to exclude workflow files from triggers (#618)
7+
- chore: update Blackduck scan workflow to ignore workflow paths and im… (#612)
8+
- change trigger (#605)
9+
- test new format #<!---->nosec [RuleList] [-- Justification] (#601)
10+
- chore: Gosec - enable security linting (#585)
11+
12+
## 🧰 Maintenance
13+
14+
<details>
15+
<summary>7 changes</summary>
16+
17+
- chore: correct gosec annotation and remove gosec from codeql (#604)
18+
- chore: change exception for gosec linter (#600)
19+
- Chore: Update repository.go (#599)
20+
- chore: exchange versions with pinned commits (#598)
21+
- chore: correct typo (#597)
22+
- chore: Create codeql.yml (#596)
23+
- chore(deps): bump github.com/distribution/distribution/v3 from 3.0.0-rc.1 to 3.0.0-rc.2 (#578)
24+
</details>
25+
26+
## ⬆️ Dependencies
27+
28+
- chore(deps): bump github.com/distribution/distribution/v3 from 3.0.0-rc.1 to 3.0.0-rc.2 (#578)

pkg/version/release.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package version
22

33
// ReleaseVersion is the version number in semver format "vX.Y.Z", prefixed with "v".
4-
var ReleaseVersion = "v0.25.4"
4+
var ReleaseVersion = "v0.26.0"
55

66
// ReleaseCandidate is the release candidate ID in format "rc.X", which will be appended to the release version.
77
var ReleaseCandidate = "rc.1"

0 commit comments

Comments
 (0)