From c0c3f4f0f81004d49ab7aa7209aae096d6b8eaea Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 25 Apr 2024 23:48:22 +0000 Subject: [PATCH 1/2] Bump actions/checkout from 3 to 4 (#1014) * Bump actions/checkout from 3 to 4 Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] * Add automated changelog yaml from template for bot PR --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Github Build Bot Co-authored-by: Mike Alfare <13974384+mikealfare@users.noreply.github.com> --- .changes/unreleased/Dependencies-20240419-024916.yaml | 6 ++++++ .github/workflows/integration.yml | 4 ++-- .github/workflows/main.yml | 6 +++--- .github/workflows/release-internal.yml | 6 +++--- .github/workflows/release-prep.yml | 6 +++--- 5 files changed, 17 insertions(+), 11 deletions(-) create mode 100644 .changes/unreleased/Dependencies-20240419-024916.yaml diff --git a/.changes/unreleased/Dependencies-20240419-024916.yaml b/.changes/unreleased/Dependencies-20240419-024916.yaml new file mode 100644 index 000000000..1ef46465e --- /dev/null +++ b/.changes/unreleased/Dependencies-20240419-024916.yaml @@ -0,0 +1,6 @@ +kind: "Dependencies" +body: "Bump actions/checkout from 3 to 4" +time: 2024-04-19T02:49:16.00000Z +custom: + Author: dependabot[bot] + PR: 1014 diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 94dece350..6e5f42af7 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -77,7 +77,7 @@ jobs: steps: - name: Check out the repository if: github.event_name != 'pull_request_target' - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: persist-credentials: false @@ -85,7 +85,7 @@ jobs: # this is necessary for the `pull_request` event - name: Check out the repository (PR) if: github.event_name == 'pull_request_target' - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: persist-credentials: false ref: ${{ github.event.pull_request.head.sha }} diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 189a8847c..ebd0a3bd7 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -42,7 +42,7 @@ jobs: steps: - name: Check out the repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: persist-credentials: false @@ -82,7 +82,7 @@ jobs: steps: - name: Check out the repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v4 @@ -123,7 +123,7 @@ jobs: steps: - name: Check out the repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set up Python uses: actions/setup-python@v4 diff --git a/.github/workflows/release-internal.yml b/.github/workflows/release-internal.yml index 6334fd282..d8b1e4592 100644 --- a/.github/workflows/release-internal.yml +++ b/.github/workflows/release-internal.yml @@ -46,7 +46,7 @@ jobs: steps: - name: "Check out the repository" - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: "Set up Python ${{ env.PYTHON_TARGET_VERSION }}" uses: actions/setup-python@v4 @@ -100,7 +100,7 @@ jobs: steps: - name: Check out the repository if: github.event_name != 'pull_request_target' - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: persist-credentials: false @@ -108,7 +108,7 @@ jobs: # this is necessary for the `pull_request` event - name: Check out the repository (PR) if: github.event_name == 'pull_request_target' - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: persist-credentials: false ref: ${{ github.event.pull_request.head.ref }} diff --git a/.github/workflows/release-prep.yml b/.github/workflows/release-prep.yml index 1a6e450c4..e214de828 100644 --- a/.github/workflows/release-prep.yml +++ b/.github/workflows/release-prep.yml @@ -452,7 +452,7 @@ jobs: steps: - name: Check out the repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v4 @@ -505,7 +505,7 @@ jobs: steps: - name: Check out the repository if: github.event_name != 'pull_request_target' - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: persist-credentials: false @@ -513,7 +513,7 @@ jobs: # this is necessary for the `pull_request` event - name: Check out the repository (PR) if: github.event_name == 'pull_request_target' - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: persist-credentials: false ref: ${{ github.event.pull_request.head.sha }} From 8dfd12c16b6d0f2a6abf2213dc33cb7cf61ce45c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 25 Apr 2024 23:59:09 +0000 Subject: [PATCH 2/2] Bump actions/setup-python from 4 to 5 (#1013) * Bump actions/setup-python from 4 to 5 Bumps [actions/setup-python](https://github.com/actions/setup-python) from 4 to 5. - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/setup-python dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] * Add automated changelog yaml from template for bot PR --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Github Build Bot Co-authored-by: Mike Alfare <13974384+mikealfare@users.noreply.github.com> --- .changes/unreleased/Dependencies-20240419-024912.yaml | 6 ++++++ .github/workflows/integration.yml | 2 +- .github/workflows/main.yml | 8 ++++---- .github/workflows/release-internal.yml | 4 ++-- .github/workflows/release-prep.yml | 4 ++-- 5 files changed, 15 insertions(+), 9 deletions(-) create mode 100644 .changes/unreleased/Dependencies-20240419-024912.yaml diff --git a/.changes/unreleased/Dependencies-20240419-024912.yaml b/.changes/unreleased/Dependencies-20240419-024912.yaml new file mode 100644 index 000000000..ea5b75aa9 --- /dev/null +++ b/.changes/unreleased/Dependencies-20240419-024912.yaml @@ -0,0 +1,6 @@ +kind: "Dependencies" +body: "Bump actions/setup-python from 4 to 5" +time: 2024-04-19T02:49:12.00000Z +custom: + Author: dependabot[bot] + PR: 1013 diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 6e5f42af7..e82a83c4d 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -92,7 +92,7 @@ jobs: # the python version used here is not what is used in the tests themselves - name: Set up Python for dagger - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: "3.11" diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index ebd0a3bd7..c71df970a 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -47,7 +47,7 @@ jobs: persist-credentials: false - name: Set up Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: '3.8' @@ -85,7 +85,7 @@ jobs: uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} @@ -126,7 +126,7 @@ jobs: uses: actions/checkout@v4 - name: Set up Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: '3.8' @@ -178,7 +178,7 @@ jobs: steps: - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} diff --git a/.github/workflows/release-internal.yml b/.github/workflows/release-internal.yml index d8b1e4592..eb892415c 100644 --- a/.github/workflows/release-internal.yml +++ b/.github/workflows/release-internal.yml @@ -49,7 +49,7 @@ jobs: uses: actions/checkout@v4 - name: "Set up Python ${{ env.PYTHON_TARGET_VERSION }}" - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: "${{ env.PYTHON_TARGET_VERSION }}" @@ -115,7 +115,7 @@ jobs: # the python version used here is not what is used in the tests themselves - name: Set up Python for dagger - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: "3.11" diff --git a/.github/workflows/release-prep.yml b/.github/workflows/release-prep.yml index e214de828..0061a8602 100644 --- a/.github/workflows/release-prep.yml +++ b/.github/workflows/release-prep.yml @@ -455,7 +455,7 @@ jobs: uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} @@ -520,7 +520,7 @@ jobs: # the python version used here is not what is used in the tests themselves - name: Set up Python for dagger - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: "3.11"