forked from cloudnative-pg/cloudnative-pg
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into fix-handling-timestamps-from-barman
- Loading branch information
Showing
170 changed files
with
6,987 additions
and
1,154 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
[ | ||
"v1.30.0", | ||
"v1.30.2", | ||
"v1.29.4", | ||
"v1.28.9", | ||
"v1.27.13" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
[ | ||
"4.16", | ||
"4.15", | ||
"4.14", | ||
"4.13", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"17": [ | ||
"17beta1", | ||
"17beta1-1" | ||
"17beta2", | ||
"17beta2-3" | ||
], | ||
"16": [ | ||
"16.3", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,7 +36,7 @@ env: | |
GOLANG_VERSION: "1.22.x" | ||
KUBEBUILDER_VERSION: "2.3.1" | ||
KIND_VERSION: "v0.23.0" | ||
ROOK_VERSION: "v1.14.5" | ||
ROOK_VERSION: "v1.14.8" | ||
EXTERNAL_SNAPSHOTTER_VERSION: "v8.0.1" | ||
OPERATOR_IMAGE_NAME: "ghcr.io/${{ github.repository }}-testing" | ||
BUILD_PUSH_PROVENANCE: "" | ||
|
@@ -68,7 +68,7 @@ jobs: | |
strategy: | ||
fail-fast: false | ||
matrix: | ||
branch: [release-1.21, release-1.22, release-1.23] | ||
branch: [release-1.22, release-1.23] | ||
steps: | ||
- name: Invoke workflow with inputs | ||
uses: benc-uk/workflow-dispatch@v1 | ||
|
@@ -382,7 +382,7 @@ jobs: | |
password: ${{ env.REGISTRY_PASSWORD }} | ||
- | ||
name: Build and push | ||
uses: docker/build-push-action@v5 | ||
uses: docker/build-push-action@v6 | ||
with: | ||
platforms: ${{ env.PLATFORMS }} | ||
context: . | ||
|
@@ -397,7 +397,7 @@ jobs: | |
cache-to: ${{ env.BUILD_PUSH_CACHE_TO }} | ||
- | ||
name: Build and push UBI8 | ||
uses: docker/build-push-action@v5 | ||
uses: docker/build-push-action@v6 | ||
with: | ||
platforms: ${{ env.PLATFORMS }} | ||
context: . | ||
|
@@ -478,7 +478,7 @@ jobs: | |
# NOTE: we only fire this in TEST DEPTH = 4, as that is the level of the | ||
# upgrade test | ||
name: Build and push image for upgrade test | ||
uses: docker/build-push-action@v5 | ||
uses: docker/build-push-action@v6 | ||
if: | | ||
always() && !cancelled() && | ||
needs.evaluate_options.outputs.test_level == '4' | ||
|
@@ -2072,6 +2072,7 @@ jobs: | |
uses: actions/download-artifact@v4 | ||
with: | ||
path: test-artifacts | ||
pattern: testartifacts-* | ||
|
||
- name: Flatten all artifacts onto directory | ||
# The download-artifact action, since we did not give it a name, | ||
|
@@ -2150,7 +2151,7 @@ jobs: | |
- name: Check preconditions | ||
id: get_pr_number_and_labels | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
GITHUB_TOKEN: ${{ secrets.REPO_GHA_PAT }} | ||
run: | | ||
ok_label=$(gh pr view "${{ github.event.issue.number }}" --json labels -q ".labels.[].name" 2>/dev/null | grep "ok to merge :ok_hand:" || :) | ||
echo "OK_LABEL=${ok_label}" >> $GITHUB_ENV | ||
|
@@ -2160,7 +2161,7 @@ jobs: | |
env.OK_LABEL == '' | ||
uses: actions-ecosystem/[email protected] | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
github_token: ${{ secrets.REPO_GHA_PAT }} | ||
number: ${{ github.event.issue.number }} | ||
labels: "ok to merge :ok_hand:" | ||
|
||
|
@@ -2179,7 +2180,7 @@ jobs: | |
- name: Check preconditions | ||
id: get_pr_number_and_labels | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
GITHUB_TOKEN: ${{ secrets.REPO_GHA_PAT }} | ||
run: | | ||
ok_label=$(gh pr view "${{ github.event.issue.number }}" --json labels -q ".labels.[].name" 2>/dev/null | grep "ok to merge :ok_hand:" || :) | ||
echo "OK_LABEL=${ok_label}" >> $GITHUB_ENV | ||
|
@@ -2189,6 +2190,6 @@ jobs: | |
env.OK_LABEL != '' | ||
uses: actions-ecosystem/[email protected] | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
github_token: ${{ secrets.REPO_GHA_PAT }} | ||
number: ${{ github.event.issue.number }} | ||
labels: "ok to merge :ok_hand:" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.