From 3e028af5df8ef71429d981c6883b8676f3f4c7c1 Mon Sep 17 00:00:00 2001 From: Lucas Machado Date: Mon, 16 Oct 2023 21:53:53 -0300 Subject: [PATCH 1/2] Checking out the PR changes in the other jobs of the pull request workflow --- .github/workflows/pull-request.yaml | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pull-request.yaml b/.github/workflows/pull-request.yaml index cacee4419..2e2607bea 100755 --- a/.github/workflows/pull-request.yaml +++ b/.github/workflows/pull-request.yaml @@ -38,7 +38,13 @@ jobs: name: Check Container Images runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - name: Checkout base branch + uses: actions/checkout@v3 + + - name: Checkout PR + run: gh pr checkout ${{ github.event.pull_request.number }} + env: + GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Check container images run: make check-images @@ -50,7 +56,13 @@ jobs: name: Check RC Images and Charts runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - name: Checkout base branch + uses: actions/checkout@v3 + + - name: Checkout PR + run: gh pr checkout ${{ github.event.pull_request.number }} + env: + GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Check RC images and charts run: make check-rc From 369f35873831494f33ad82299d9d18be4be816bf Mon Sep 17 00:00:00 2001 From: Lucas Lopes Date: Tue, 17 Oct 2023 12:46:51 -0300 Subject: [PATCH 2/2] Bumping scripts version to v0.5.2 --- scripts/version | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/version b/scripts/version index 1038b6b8d..215036aab 100755 --- a/scripts/version +++ b/scripts/version @@ -2,4 +2,4 @@ set -e CHARTS_BUILD_SCRIPTS_REPO=https://github.com/rancher/charts-build-scripts.git -CHARTS_BUILD_SCRIPT_VERSION="${CHARTS_BUILD_SCRIPT_VERSION:-v0.5.1}" +CHARTS_BUILD_SCRIPT_VERSION="${CHARTS_BUILD_SCRIPT_VERSION:-v0.5.2}"