Skip to content

Commit

Permalink
Bump the github-actions group with 7 updates
Browse files Browse the repository at this point in the history
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](actions/checkout@v2...v4)

Updates `actions/setup-go` from 3 to 5
- [Release notes](https://github.com/actions/setup-go/releases)
- [Commits](actions/setup-go@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](dineshsonachalam/markdown-autodocs@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](Jerome1337/gofmt-action@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](morphy2k/revive-action@v2.5.1...v2.5.7)

Updates `actions/setup-node` from 3 to 4
- [Release notes](https://github.com/actions/setup-node/releases)
- [Commits](actions/setup-node@v3...v4)

Updates `actions/upload-artifact` from 3 to 4
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](actions/upload-artifact@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] <[email protected]>
  • Loading branch information
dependabot[bot] authored Apr 17, 2024
1 parent 9ac7b05 commit 6843d21
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/generate-markdown.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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/[email protected].4
uses: dineshsonachalam/[email protected].7
with:
output_file_paths: '[./README.md, ./docs/*.md]'
6 changes: 3 additions & 3 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'

Expand All @@ -25,12 +25,12 @@ jobs:
run: go vet ./...

- name: gofmt
uses: Jerome1337/[email protected].4
uses: Jerome1337/[email protected].5
with:
gofmt-flags: "-l -d"

- name: Revive Action
uses: morphy2k/[email protected].1
uses: morphy2k/[email protected].7

- name: Tests
run: go test -v ./...
8 changes: 4 additions & 4 deletions .github/workflows/itest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand All @@ -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: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 6843d21

Please sign in to comment.