Skip to content

Commit 5460e36

Browse files
deps(actions): Bump the actions group across 1 directory with 3 updates
Bumps the actions group with 3 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/setup-go](https://github.com/actions/setup-go) and [actions/labeler](https://github.com/actions/labeler). 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 `actions/labeler` from 5 to 6 - [Release notes](https://github.com/actions/labeler/releases) - [Commits](actions/labeler@v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/setup-go dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/labeler dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 3b6a4cc commit 5460e36

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,17 +24,17 @@ jobs:
2424
git config --global user.email "[email protected]"
2525
git config --global user.name "Someone"
2626
git config --global --add safe.directory /__w/go-which/go-which
27-
- uses: actions/checkout@v4
27+
- uses: actions/checkout@v5
2828
with:
2929
fetch-depth: 0
3030
- run: make test
3131
windows-test:
3232
runs-on: windows-latest
3333
steps:
34-
- uses: actions/checkout@v4
34+
- uses: actions/checkout@v5
3535
with:
3636
fetch-depth: 0
37-
- uses: actions/setup-go@v5
37+
- uses: actions/setup-go@v6
3838
with:
3939
go-version-file: go.mod
4040
check-latest: true
@@ -47,5 +47,5 @@ jobs:
4747
container:
4848
image: ghcr.io/hairyhenderson/gomplate-ci-build:latest
4949
steps:
50-
- uses: actions/checkout@v4
50+
- uses: actions/checkout@v5
5151
- run: make ci-lint

.github/workflows/conventional-commits.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
name: Conventional Commits
1919
runs-on: ubuntu-latest
2020
steps:
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@v5
2222
- uses: webiny/[email protected]
2323
with:
2424
allowed-commit-types: feat,fix,docs,deps,chore,build,ci

.github/workflows/docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
DOCKER_BUILDKIT: 1
1717
DOCKER_CLI_EXPERIMENTAL: enabled
1818
steps:
19-
- uses: actions/checkout@v4
19+
- uses: actions/checkout@v5
2020
- name: Docker images
2121
run: |
2222
make artifacts.tag latest.tag alpine.tag

.github/workflows/image-scan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
DOCKER_BUILDKIT: 1
1919
DOCKER_CLI_EXPERIMENTAL: enabled
2020
steps:
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@v5
2222
- name: Quick build (linux/alpine only)
2323
run: |
2424
docker build --target alpine -t go-which .

.github/workflows/label.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ jobs:
1515
label:
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/labeler@v5
18+
- uses: actions/labeler@v6
1919
with:
2020
repo-token: "${{ secrets.GITHUB_TOKEN }}"

0 commit comments

Comments
 (0)