From 6f4eebf7da1a02be034e8bf57837a575d3d9d240 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Apr 2024 17:18:51 +0000 Subject: [PATCH] Bump the actions group across 1 directory with 8 updates Bumps the actions group with 8 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4.1.1` | `4.1.4` | | [mikefarah/yq](https://github.com/mikefarah/yq) | `4.40.7` | `4.43.1` | | [softprops/action-gh-release](https://github.com/softprops/action-gh-release) | `0.1.15` | `2.0.4` | | [actions/setup-python](https://github.com/actions/setup-python) | `5.0.0` | `5.1.0` | | [codecov/codecov-action](https://github.com/codecov/codecov-action) | `3` | `4` | | [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action) | `3.0.0` | `3.3.0` | | [docker/login-action](https://github.com/docker/login-action) | `3.0.0` | `3.1.0` | | [docker/build-push-action](https://github.com/docker/build-push-action) | `4.1.1` | `5.3.0` | Updates `actions/checkout` from 4.1.1 to 4.1.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/v4.1.1...v4.1.4) Updates `mikefarah/yq` from 4.40.7 to 4.43.1 - [Release notes](https://github.com/mikefarah/yq/releases) - [Changelog](https://github.com/mikefarah/yq/blob/master/release_notes.txt) - [Commits](https://github.com/mikefarah/yq/compare/v4.40.7...v4.43.1) Updates `softprops/action-gh-release` from 0.1.15 to 2.0.4 - [Release notes](https://github.com/softprops/action-gh-release/releases) - [Changelog](https://github.com/softprops/action-gh-release/blob/master/CHANGELOG.md) - [Commits](https://github.com/softprops/action-gh-release/compare/v0.1.15...v2.0.4) Updates `actions/setup-python` from 5.0.0 to 5.1.0 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v5...v5.1.0) Updates `codecov/codecov-action` from 3 to 4 - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/codecov/codecov-action/compare/v3...v4) Updates `docker/setup-buildx-action` from 3.0.0 to 3.3.0 - [Release notes](https://github.com/docker/setup-buildx-action/releases) - [Commits](https://github.com/docker/setup-buildx-action/compare/v3.0.0...v3.3.0) Updates `docker/login-action` from 3.0.0 to 3.1.0 - [Release notes](https://github.com/docker/login-action/releases) - [Commits](https://github.com/docker/login-action/compare/v3.0.0...v3.1.0) Updates `docker/build-push-action` from 4.1.1 to 5.3.0 - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](https://github.com/docker/build-push-action/compare/v4.1.1...v5.3.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions - dependency-name: mikefarah/yq dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: softprops/action-gh-release dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/setup-python dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: docker/setup-buildx-action dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: docker/login-action dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: docker/build-push-action dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] --- .github/workflows/ci_helm_publish.yaml | 10 +++++----- .github/workflows/ci_helm_tests.yaml | 2 +- .github/workflows/ci_servicex.yaml | 16 ++++++++-------- 3 files changed, 14 insertions(+), 14 deletions(-) diff --git a/.github/workflows/ci_helm_publish.yaml b/.github/workflows/ci_helm_publish.yaml index a75051a0a..ce5f40887 100644 --- a/.github/workflows/ci_helm_publish.yaml +++ b/.github/workflows/ci_helm_publish.yaml @@ -17,16 +17,16 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v4.1.1 + uses: actions/checkout@v4.1.4 - name: Pull flux_river_configs - uses: actions/checkout@v4.1.1 + uses: actions/checkout@v4.1.4 with: repository: ssl-hep/flux_river_configs ref: main path: flux_river_configs token: ${{ secrets.API_TOKEN_GITHUB }} - name: Pull ssl-helm-charts - uses: actions/checkout@v4.1.1 + uses: actions/checkout@v4.1.4 with: repository: ssl-hep/ssl-helm-charts ref: gh-pages @@ -41,7 +41,7 @@ jobs: echo "$DOCKER_TAG" - name: Set version in flux_river_configs - uses: mikefarah/yq@v4.40.7 + uses: mikefarah/yq@v4.43.1 with: cmd: | yq -i '.spec.chart.spec.version = strenv(RELEASE_VERSION) | .spec.chart.spec.version style="double" ' flux_river_configs/servicex-int/values.yaml && @@ -81,7 +81,7 @@ jobs: user-email: 'bengal1@illinois.edu' - name: Create Release id: create_release - uses: softprops/action-gh-release@v0.1.15 + uses: softprops/action-gh-release@v2.0.4 with: tag_name: ${{ github.ref }} token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/ci_helm_tests.yaml b/.github/workflows/ci_helm_tests.yaml index 7c599d436..42d24e4a7 100644 --- a/.github/workflows/ci_helm_tests.yaml +++ b/.github/workflows/ci_helm_tests.yaml @@ -7,7 +7,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4.1.1 + uses: actions/checkout@v4.1.4 with: fetch-depth: 0 diff --git a/.github/workflows/ci_servicex.yaml b/.github/workflows/ci_servicex.yaml index c36379ef2..2e4533468 100644 --- a/.github/workflows/ci_servicex.yaml +++ b/.github/workflows/ci_servicex.yaml @@ -17,7 +17,7 @@ jobs: matrix: ${{ steps.set-matrix.outputs.matrix }} steps: - name: Checkout to repository - uses: actions/checkout@v4.1.1 + uses: actions/checkout@v4.1.4 - name: Read file contents working-directory: ./.github/workflows @@ -37,10 +37,10 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout to repository - uses: actions/checkout@v4.1.1 + uses: actions/checkout@v4.1.4 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v5.0.0 + uses: actions/setup-python@v5.1.0 with: python-version: ${{ matrix.python-version }} if: ${{ matrix.app.test_required }} @@ -69,7 +69,7 @@ jobs: poetry run python -m coverage run -m pytest -r sx - name: Report coverage with Codecov if: ${{ matrix.app.test_required }} - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 with: token: ${{ secrets.CODECOV_TOKEN }} @@ -81,7 +81,7 @@ jobs: matrix: app: ${{fromJson(needs.build-matrix.outputs.matrix)}} steps: - - uses: actions/checkout@v4.1.1 + - uses: actions/checkout@v4.1.4 - name: Extract tag name working-directory: ${{ matrix.app.dir_name }} shell: bash @@ -99,14 +99,14 @@ jobs: - name: Set up QEMU uses: docker/setup-qemu-action@v3.0.0 - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3.0.0 + uses: docker/setup-buildx-action@v3.3.0 - name: Login to Docker Hub - uses: docker/login-action@v3.0.0 + uses: docker/login-action@v3.1.0 with: username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_PASSWORD }} - name: Build and push - uses: docker/build-push-action@v4.1.1 + uses: docker/build-push-action@v5.3.0 with: context: ${{ matrix.app.dir_name }} push: true