From 7f90b6b7bce06f806a2ac25bbd57ccec45cf8293 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 17 Apr 2024 12:30:58 +0000 Subject: [PATCH] Bump the github-actions group with 7 updates Bumps the github-actions group with 7 updates: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `2` | `4` | | [actions/setup-go](https://github.com/actions/setup-go) | `3` | `5` | | [dineshsonachalam/markdown-autodocs](https://github.com/dineshsonachalam/markdown-autodocs) | `1.0.4` | `1.0.7` | | [Jerome1337/gofmt-action](https://github.com/jerome1337/gofmt-action) | `1.0.4` | `1.0.5` | | [morphy2k/revive-action](https://github.com/morphy2k/revive-action) | `2.5.1` | `2.5.7` | | [actions/setup-node](https://github.com/actions/setup-node) | `3` | `4` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `3` | `4` | Updates `actions/checkout` from 2 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/v2...v4) 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 `dineshsonachalam/markdown-autodocs` from 1.0.4 to 1.0.7 - [Release notes](https://github.com/dineshsonachalam/markdown-autodocs/releases) - [Changelog](https://github.com/dineshsonachalam/markdown-autodocs/blob/master/update_release_version.py) - [Commits](https://github.com/dineshsonachalam/markdown-autodocs/compare/v1.0.4...v1.0.7) Updates `Jerome1337/gofmt-action` from 1.0.4 to 1.0.5 - [Release notes](https://github.com/jerome1337/gofmt-action/releases) - [Commits](https://github.com/jerome1337/gofmt-action/compare/v1.0.4...v1.0.5) Updates `morphy2k/revive-action` from 2.5.1 to 2.5.7 - [Release notes](https://github.com/morphy2k/revive-action/releases) - [Commits](https://github.com/morphy2k/revive-action/compare/v2.5.1...v2.5.7) Updates `actions/setup-node` from 3 to 4 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v3...v4) Updates `actions/upload-artifact` from 3 to 4 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/setup-go dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: dineshsonachalam/markdown-autodocs dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: Jerome1337/gofmt-action dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: morphy2k/revive-action dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: actions/setup-node dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/generate-markdown.yml | 4 ++-- .github/workflows/go.yml | 6 +++--- .github/workflows/itest.yml | 8 ++++---- .github/workflows/linting.yml | 2 +- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/generate-markdown.yml b/.github/workflows/generate-markdown.yml index a59c9444..a8b2dcc9 100644 --- a/.github/workflows/generate-markdown.yml +++ b/.github/workflows/generate-markdown.yml @@ -13,8 +13,8 @@ jobs: auto-update-readme: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Markdown autodocs - uses: dineshsonachalam/markdown-autodocs@v1.0.4 + uses: dineshsonachalam/markdown-autodocs@v1.0.7 with: output_file_paths: '[./README.md, ./docs/*.md]' diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index c2a0cb9c..888faea8 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -14,7 +14,7 @@ jobs: - uses: actions/checkout@v4 - name: Set up Go - uses: actions/setup-go@v4 + uses: actions/setup-go@v5 with: go-version: 'stable' @@ -25,12 +25,12 @@ jobs: run: go vet ./... - name: gofmt - uses: Jerome1337/gofmt-action@v1.0.4 + uses: Jerome1337/gofmt-action@v1.0.5 with: gofmt-flags: "-l -d" - name: Revive Action - uses: morphy2k/revive-action@v2.5.1 + uses: morphy2k/revive-action@v2.5.7 - name: Tests run: go test -v ./... diff --git a/.github/workflows/itest.yml b/.github/workflows/itest.yml index eff11c24..435f62fe 100644 --- a/.github/workflows/itest.yml +++ b/.github/workflows/itest.yml @@ -7,17 +7,17 @@ jobs: steps: - name: Set up Go - uses: actions/setup-go@v3 + uses: actions/setup-go@v5 with: go-version: 1.21.0 - name: Set up Node.js - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: 16 - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Execute the scripts run: | @@ -36,7 +36,7 @@ jobs: shell: bash - name: Upload test results - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: checker-results path: | diff --git a/.github/workflows/linting.yml b/.github/workflows/linting.yml index a544b790..ee2332fb 100644 --- a/.github/workflows/linting.yml +++ b/.github/workflows/linting.yml @@ -12,5 +12,5 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - uses: actions/setup-go@v4 + - uses: actions/setup-go@v5 - uses: golangci/golangci-lint-action@v4