Skip to content

Commit 2db2840

Browse files
chore(deps): bump the actions-version-updates group across 1 directory with 5 updates
Bumps the actions-version-updates group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4` | `5` | | [actions/setup-go](https://github.com/actions/setup-go) | `5` | `6` | | [stefanzweifel/git-auto-commit-action](https://github.com/stefanzweifel/git-auto-commit-action) | `5` | `6` | | [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action) | `5` | `8` | | [mridang/action-semantic-release](https://github.com/mridang/action-semantic-release) | `1.0.0` | `1.4.0` | Updates `actions/checkout` from 4 to 5 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) Updates `actions/setup-go` from 5 to 6 - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](actions/setup-go@v5...v6) Updates `stefanzweifel/git-auto-commit-action` from 5 to 6 - [Release notes](https://github.com/stefanzweifel/git-auto-commit-action/releases) - [Changelog](https://github.com/stefanzweifel/git-auto-commit-action/blob/master/CHANGELOG.md) - [Commits](stefanzweifel/git-auto-commit-action@v5...v6) Updates `golangci/golangci-lint-action` from 5 to 8 - [Release notes](https://github.com/golangci/golangci-lint-action/releases) - [Commits](golangci/golangci-lint-action@v5...v8) Updates `mridang/action-semantic-release` from 1.0.0 to 1.4.0 - [Release notes](https://github.com/mridang/action-semantic-release/releases) - [Changelog](https://github.com/mridang/action-semantic-release/blob/master/release.config.mjs) - [Commits](mridang/action-semantic-release@v1.0.0...v1.4.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-version-updates - dependency-name: actions/setup-go dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-version-updates - dependency-name: stefanzweifel/git-auto-commit-action dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-version-updates - dependency-name: golangci/golangci-lint-action dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-version-updates - dependency-name: mridang/action-semantic-release dependency-version: 1.4.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions-version-updates ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent f77f976 commit 2db2840

4 files changed

Lines changed: 11 additions & 11 deletions

File tree

.github/workflows/format.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,18 +15,18 @@ jobs:
1515

1616
steps:
1717
- name: Checkout code
18-
uses: actions/checkout@v4
18+
uses: actions/checkout@v5
1919

2020
- name: Setup Go
21-
uses: actions/setup-go@v5
21+
uses: actions/setup-go@v6
2222
with:
2323
go-version-file: 'go.mod'
2424

2525
- name: Run Gofmt
2626
run: make format
2727

2828
- name: Commit and Push Changes
29-
uses: stefanzweifel/git-auto-commit-action@v5
29+
uses: stefanzweifel/git-auto-commit-action@v6
3030
with:
3131
commit_message: Apply formatting
3232
commit_options: '--no-verify'

.github/workflows/lint.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ jobs:
1515

1616
steps:
1717
- name: Checkout code
18-
uses: actions/checkout@v4
18+
uses: actions/checkout@v5
1919

2020
- name: Setup Go
21-
uses: actions/setup-go@v5
21+
uses: actions/setup-go@v6
2222
with:
2323
go-version-file: 'go.mod'
2424

2525
- name: Run GolangCILint
26-
uses: golangci/golangci-lint-action@v5
26+
uses: golangci/golangci-lint-action@v8
2727
with:
2828
version: latest

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@ jobs:
1818

1919
steps:
2020
- name: Checkout code
21-
uses: actions/checkout@v4
21+
uses: actions/checkout@v5
2222

2323
- name: Setup Go
24-
uses: actions/setup-go@v5
24+
uses: actions/setup-go@v6
2525
with:
2626
go-version-file: 'go.mod'
2727

2828
- name: Run semantic-release
29-
uses: mridang/action-semantic-release@v1.0.0
29+
uses: mridang/action-semantic-release@v1.4.0
3030
with:
3131
github-token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515

1616
steps:
1717
- name: Checkout code
18-
uses: actions/checkout@v4
18+
uses: actions/checkout@v5
1919

2020
- name: Cache Docker layers
2121
uses: actions/cache@v4
@@ -40,7 +40,7 @@ jobs:
4040
# fi
4141

4242
- name: Setup Go
43-
uses: actions/setup-go@v5
43+
uses: actions/setup-go@v6
4444
with:
4545
go-version-file: 'go.mod'
4646

0 commit comments

Comments
 (0)