Skip to content

Commit

Permalink
chore(ci): bump the actions group with 5 updates
Browse files Browse the repository at this point in the history
Bumps the actions group with 5 updates:

| Package | From | To |
| --- | --- | --- |
| [actions/setup-go](https://github.com/actions/setup-go) | `4` | `5` |
| [codfish/semantic-release-action](https://github.com/codfish/semantic-release-action) | `2` | `3` |
| [actions/upload-artifact](https://github.com/actions/upload-artifact) | `3` | `4` |
| [docker/build-push-action](https://github.com/docker/build-push-action) | `5` | `6` |
| [actions/download-artifact](https://github.com/actions/download-artifact) | `3` | `4` |


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

Updates `codfish/semantic-release-action` from 2 to 3
- [Release notes](https://github.com/codfish/semantic-release-action/releases)
- [Commits](codfish/semantic-release-action@v2...v3)

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

Updates `docker/build-push-action` from 5 to 6
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](docker/build-push-action@v5...v6)

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

---
updated-dependencies:
- dependency-name: actions/setup-go
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: actions
- dependency-name: codfish/semantic-release-action
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: actions
- dependency-name: actions/upload-artifact
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: actions
- dependency-name: docker/build-push-action
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: actions
- dependency-name: actions/download-artifact
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: actions
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Nov 6, 2024
1 parent 33e02cc commit 2f4793f
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,14 +45,14 @@ jobs:
ref: ${{ github.event.pull_request.head.sha }}

- name: Set up Go compiler
uses: actions/setup-go@v4
uses: actions/setup-go@v5
with:
go-version-file: go.mod
check-latest: true

- name: Fetch version from git history
if: github.ref_protected == true
uses: codfish/semantic-release-action@v2
uses: codfish/semantic-release-action@v3
id: semantic
with:
dry_run: true
Expand All @@ -68,7 +68,7 @@ jobs:
run: UPX=-9 PLATFORM=${{ matrix.platform }} make build

- name: Upload binary
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: binaries
path: bin/*
Expand All @@ -92,7 +92,7 @@ jobs:
ref: ${{ github.event.pull_request.head.sha }}

- name: Fetch version from git history
uses: codfish/semantic-release-action@v2
uses: codfish/semantic-release-action@v3
id: semantic
with:
dry_run: true
Expand Down Expand Up @@ -124,7 +124,7 @@ jobs:
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build and push container image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
file: build/package/Dockerfile
cache-from: type=registry,ref=${{ env.CONTAINER_IMAGE }}:main
Expand Down Expand Up @@ -157,12 +157,12 @@ jobs:
uses: actions/checkout@v4

- name: Download release artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: binaries
path: release

- name: Create release
uses: codfish/semantic-release-action@v2
uses: codfish/semantic-release-action@v3
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 2f4793f

Please sign in to comment.