From 59193ef8d8673d7901d954a74b481d4e3faca4b4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 May 2024 16:36:16 +0000 Subject: [PATCH] Bump the actions-version group with 2 updates Bumps the actions-version group with 2 updates: [actions/checkout](https://github.com/actions/checkout) and [magefile/mage-action](https://github.com/magefile/mage-action). 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 `magefile/mage-action` from 2 to 3 - [Release notes](https://github.com/magefile/mage-action/releases) - [Commits](https://github.com/magefile/mage-action/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-version - dependency-name: magefile/mage-action dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-version ... Signed-off-by: dependabot[bot] --- .github/workflows/build-test.yaml | 8 ++++---- .github/workflows/lint.yaml | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build-test.yaml b/.github/workflows/build-test.yaml index e9d7823..85c5a33 100644 --- a/.github/workflows/build-test.yaml +++ b/.github/workflows/build-test.yaml @@ -14,11 +14,11 @@ jobs: name: "Unit" runs-on: "ubuntu-latest" steps: - - uses: "actions/checkout@v3" + - uses: "actions/checkout@v4" - uses: "authzed/actions/setup-go@main" with: go-version: "${{ env.GO_VERSION }}" - - uses: "magefile/mage-action@v2" + - uses: "magefile/mage-action@v3" with: version: "latest" args: "test:unit" @@ -26,11 +26,11 @@ jobs: name: "integration" runs-on: "ubuntu-latest" steps: - - uses: "actions/checkout@v3" + - uses: "actions/checkout@v4" - uses: "authzed/actions/setup-go@main" with: go-version: "${{ env.GO_VERSION }}" - - uses: "magefile/mage-action@v2" + - uses: "magefile/mage-action@v3" with: version: "latest" args: "test:integration" diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index 356d567..dd3ce6c 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -14,11 +14,11 @@ jobs: name: "Lint Go" runs-on: "ubuntu-latest" steps: - - uses: "actions/checkout@v3" + - uses: "actions/checkout@v4" - uses: "authzed/actions/setup-go@main" with: go-version: "${{ env.GO_VERSION }}" - - uses: "magefile/mage-action@v2" + - uses: "magefile/mage-action@v3" with: version: "latest" args: "lint:go" @@ -30,11 +30,11 @@ jobs: name: "Lint YAML & Markdown" runs-on: "ubuntu-latest" steps: - - uses: "actions/checkout@v3" + - uses: "actions/checkout@v4" - uses: "authzed/actions/setup-go@main" with: go-version: "${{ env.GO_VERSION }}" - - uses: "magefile/mage-action@v2" + - uses: "magefile/mage-action@v3" with: version: "latest" args: "lint:extra"