Skip to content

Commit 13085f0

Browse files
Bump the all-gomod group across 1 directory with 7 updates (#29)
Bumps the all-gomod group with 7 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `2.4.0` | `4.2.2` | | [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action) | `4` | `8` | | [codecov/codecov-action](https://github.com/codecov/codecov-action) | `3` | `5` | | [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action) | `2.0.0` | `3.10.0` | | [docker/login-action](https://github.com/docker/login-action) | `2.0.0` | `3.4.0` | | [docker/metadata-action](https://github.com/docker/metadata-action) | `4.0.1` | `5.7.0` | | [docker/build-push-action](https://github.com/docker/build-push-action) | `3.0.0` | `6.16.0` | Updates `actions/checkout` from 2.4.0 to 4.2.2 - [Release notes](https://github.com/actions/checkout/releases) - [Commits](actions/checkout@v2.4.0...v4.2.2) Updates `golangci/golangci-lint-action` from 4 to 8 - [Release notes](https://github.com/golangci/golangci-lint-action/releases) - [Commits](golangci/golangci-lint-action@v4...v8) Updates `codecov/codecov-action` from 3 to 5 - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](codecov/codecov-action@v3...v5) Updates `docker/setup-buildx-action` from 2.0.0 to 3.10.0 - [Release notes](https://github.com/docker/setup-buildx-action/releases) - [Commits](docker/setup-buildx-action@dc7b971...b5ca514) Updates `docker/login-action` from 2.0.0 to 3.4.0 - [Release notes](https://github.com/docker/login-action/releases) - [Commits](docker/login-action@49ed152...74a5d14) Updates `docker/metadata-action` from 4.0.1 to 5.7.0 - [Release notes](https://github.com/docker/metadata-action/releases) - [Commits](docker/metadata-action@69f6fc9...902fa8e) Updates `docker/build-push-action` from 3.0.0 to 6.16.0 - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](docker/build-push-action@e551b19...14487ce) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 4.2.2 dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-gomod - dependency-name: golangci/golangci-lint-action dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-gomod - dependency-name: codecov/codecov-action dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-gomod - dependency-name: docker/setup-buildx-action dependency-version: 3.10.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-gomod - dependency-name: docker/login-action dependency-version: 3.4.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-gomod - dependency-name: docker/metadata-action dependency-version: 5.7.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-gomod - dependency-name: docker/build-push-action dependency-version: 6.16.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-gomod ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 9a9bb9d commit 13085f0

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Checkout code
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v4.2.2
1818
with:
1919
fetch-depth: 0
2020

@@ -26,7 +26,7 @@ jobs:
2626
cache: true
2727

2828
- name: Lint
29-
uses: golangci/golangci-lint-action@v4
29+
uses: golangci/golangci-lint-action@v8
3030
with:
3131
version: latest
3232
args: --timeout=5m
@@ -36,7 +36,7 @@ jobs:
3636
runs-on: ubuntu-latest
3737
steps:
3838
- name: Checkout code
39-
uses: actions/checkout@v4
39+
uses: actions/checkout@v4.2.2
4040
with:
4141
fetch-depth: 0
4242

@@ -55,7 +55,7 @@ jobs:
5555
continue-on-error: true
5656

5757
- name: Upload coverage to Codecov
58-
uses: codecov/codecov-action@v3
58+
uses: codecov/codecov-action@v5
5959
with:
6060
file: ./coverage.txt
6161
fail_ci_if_error: false
@@ -73,7 +73,7 @@ jobs:
7373
needs: [lint, test]
7474
steps:
7575
- name: Checkout code
76-
uses: actions/checkout@v4
76+
uses: actions/checkout@v4.2.2
7777
with:
7878
fetch-depth: 0
7979

@@ -101,7 +101,7 @@ jobs:
101101
runs-on: ubuntu-latest
102102
steps:
103103
- name: Checkout code
104-
uses: actions/checkout@v4
104+
uses: actions/checkout@v4.2.2
105105
with:
106106
fetch-depth: 0
107107

.github/workflows/go-ossf-slsa3-publish.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
tree-state: ${{ steps.ldflags.outputs.tree-state }}
3535
steps:
3636
- id: checkout
37-
uses: actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579 # tag=v2.3.4
37+
uses: actions/checkout@85e6279cec87321a52edac9c87bce653a07cf6c2 # tag=v2.3.4
3838
with:
3939
fetch-depth: 0
4040
- id: ldflags
@@ -79,26 +79,26 @@ jobs:
7979
runs-on: ubuntu-latest
8080
steps:
8181
- name: Checkout the repository
82-
uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # v2.3.4
82+
uses: actions/checkout@85e6279cec87321a52edac9c87bce653a07cf6c2 # v2.3.4
8383

8484
- name: Set up Docker Buildx
85-
uses: docker/setup-buildx-action@dc7b9719a96d48369863986a06765841d7ea23f6 # v2.0.0
85+
uses: docker/setup-buildx-action@b5ca514318bd6ebac0fb2aedd5d36ec1b5c232a2 # v3.10.0
8686

8787
- name: Authenticate Docker
88-
uses: docker/login-action@49ed152c8eca782a232dede0303416e8f356c37b # v2.0.0
88+
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3.4.0
8989
with:
9090
registry: ${{ env.IMAGE_REGISTRY }}
9191
username: ${{ github.actor }}
9292
password: ${{ secrets.GITHUB_TOKEN }}
9393

9494
- name: Extract metadata (tags, labels) for Docker
9595
id: meta
96-
uses: docker/metadata-action@69f6fc9d46f2f8bf0d5491e4aabe0bb8c6a4678a # v4.0.1
96+
uses: docker/metadata-action@902fa8ec7d6ecbf8d84d538b9b233a880e428804 # v5.7.0
9797
with:
9898
images: ${{ env.IMAGE_REGISTRY }}/${{ env.IMAGE_NAME }}
9999

100100
- name: Build and push Docker image
101-
uses: docker/build-push-action@e551b19e49efd4e98792db7592c17c09b89db8d8 # v3.0.0
101+
uses: docker/build-push-action@14487ce63c7a62a4a324b0bfb37086795e31c6c1 # v6.16.0
102102
id: build
103103
with:
104104
push: true

0 commit comments

Comments
 (0)