From a06e661a1c70d1293de29357ee04e4783a23e76b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 23 Dec 2024 13:13:44 +0000 Subject: [PATCH] build(deps): bump the actions-deps group across 1 directory with 5 updates Bumps the actions-deps group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `3` | `4` | | [actions/labeler](https://github.com/actions/labeler) | `4` | `5` | | [actions/setup-go](https://github.com/actions/setup-go) | `3` | `5` | | [tj-actions/changed-files](https://github.com/tj-actions/changed-files) | `41.0.0` | `45.0.5` | | [codecov/codecov-action](https://github.com/codecov/codecov-action) | `4` | `5` | Updates `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) Updates `actions/labeler` from 4 to 5 - [Release notes](https://github.com/actions/labeler/releases) - [Commits](https://github.com/actions/labeler/compare/v4...v5) Updates `actions/setup-go` from 3 to 5 - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](https://github.com/actions/setup-go/compare/v3...v5) Updates `tj-actions/changed-files` from 41.0.0 to 45.0.5 - [Release notes](https://github.com/tj-actions/changed-files/releases) - [Changelog](https://github.com/tj-actions/changed-files/blob/main/HISTORY.md) - [Commits](https://github.com/tj-actions/changed-files/compare/v41.0.0...v45.0.5) Updates `codecov/codecov-action` from 4 to 5 - [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/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-deps - dependency-name: actions/labeler dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-deps - dependency-name: actions/setup-go dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-deps - dependency-name: tj-actions/changed-files dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-deps - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-deps ... Signed-off-by: dependabot[bot] --- .github/workflows/labeler.yaml | 2 +- .github/workflows/macos-quick.yaml | 4 ++-- .github/workflows/naming.yml | 4 ++-- .github/workflows/spread-tests.yaml | 2 +- .github/workflows/static-checks.yaml | 2 +- .github/workflows/test.yaml | 2 +- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/labeler.yaml b/.github/workflows/labeler.yaml index 6d907972912..6145616804c 100644 --- a/.github/workflows/labeler.yaml +++ b/.github/workflows/labeler.yaml @@ -9,7 +9,7 @@ jobs: pull-requests: write runs-on: ubuntu-latest steps: - - uses: actions/labeler@v4 + - uses: actions/labeler@v5 with: repo-token: "${{ secrets.GITHUB_TOKEN }}" sync-labels: "true" diff --git a/.github/workflows/macos-quick.yaml b/.github/workflows/macos-quick.yaml index acbf31577ca..3ac75847b93 100644 --- a/.github/workflows/macos-quick.yaml +++ b/.github/workflows/macos-quick.yaml @@ -8,12 +8,12 @@ jobs: macos-quick: runs-on: macos-latest steps: - - uses: actions/setup-go@v3 + - uses: actions/setup-go@v5 with: go-version: "1.18.x" - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install squashfs from homebrew run: | diff --git a/.github/workflows/naming.yml b/.github/workflows/naming.yml index 63f644fcd5c..bffbdfa7544 100644 --- a/.github/workflows/naming.yml +++ b/.github/workflows/naming.yml @@ -7,11 +7,11 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - - uses: tj-actions/changed-files@v41.0.0 + - uses: tj-actions/changed-files@v45.0.5 id: files - name: woke diff --git a/.github/workflows/spread-tests.yaml b/.github/workflows/spread-tests.yaml index 69d908b61d1..f276b2c4497 100644 --- a/.github/workflows/spread-tests.yaml +++ b/.github/workflows/spread-tests.yaml @@ -108,7 +108,7 @@ jobs: - name: Get changed files id: changed-files - uses: tj-actions/changed-files@v41.0.0 + uses: tj-actions/changed-files@v45.0.5 - name: Save changes files run: | diff --git a/.github/workflows/static-checks.yaml b/.github/workflows/static-checks.yaml index 8406b9dbb62..5269104e8ce 100644 --- a/.github/workflows/static-checks.yaml +++ b/.github/workflows/static-checks.yaml @@ -61,7 +61,7 @@ jobs: - name: Get changed files id: changed-files - uses: tj-actions/changed-files@v41.0.0 + uses: tj-actions/changed-files@v45.0.5 with: path: ./ diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 34040783595..a10bf81c0e2 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -253,7 +253,7 @@ jobs: merge-multiple: true - name: Upload coverage to Codecov - uses: codecov/codecov-action@v4 + uses: codecov/codecov-action@v5 # uploading to codecov occasionally fails, so continue running the test # workflow regardless of the upload continue-on-error: true