Skip to content

Commit 574486a

Browse files
Merge pull request #20 from mach-composer/dependabot/github_actions/github-actions-4af99c5646
chore(deps): bump the github-actions group across 1 directory with 9 updates
2 parents bf3d459 + 43d84ab commit 574486a

File tree

6 files changed

+24
-21
lines changed

6 files changed

+24
-21
lines changed
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
kind: Dependency
2+
body: 'chore(deps): bump the github-actions group across 1 directory with 9 updates'
3+
time: 2025-04-25T09:36:52.746433511Z

.github/workflows/codeql.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,13 +43,13 @@ jobs:
4343
uses: actions/checkout@v4
4444

4545
- name: Set up Go
46-
uses: actions/setup-go@v4
46+
uses: actions/setup-go@v5
4747
with:
4848
go-version-file: go.mod
4949

5050
# Initializes the CodeQL tools for scanning.
5151
- name: Initialize CodeQL
52-
uses: github/codeql-action/init@v2
52+
uses: github/codeql-action/init@v3
5353
with:
5454
languages: ${{ matrix.language }}
5555
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -63,7 +63,7 @@ jobs:
6363
# Autobuild attempts to build any compiled languages (C/C++, C#, Go, or Java).
6464
# If this step fails, then you should remove it and run the build manually (see below)
6565
- name: Autobuild
66-
uses: github/codeql-action/autobuild@v2
66+
uses: github/codeql-action/autobuild@v3
6767

6868
# ℹ️ Command-line programs to run using the OS shell.
6969
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
@@ -76,6 +76,6 @@ jobs:
7676
# ./location_of_script_within_repo/buildscript.sh
7777

7878
- name: Perform CodeQL Analysis
79-
uses: github/codeql-action/analyze@v2
79+
uses: github/codeql-action/analyze@v3
8080
with:
8181
category: "/language:${{matrix.language}}"

.github/workflows/prepare-release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
fetch-depth: 0
1515

1616
- name: Prepare release
17-
uses: labd/changie-release-action@v0.3.1
17+
uses: labd/changie-release-action@v0.6.0
1818
with:
1919
github-token: ${{ secrets.GITHUB_TOKEN }}
2020
release-workflow: release.yaml

.github/workflows/pull-request.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,17 @@ jobs:
1313

1414
steps:
1515
- name: Check out code
16-
uses: actions/checkout@v3
16+
uses: actions/checkout@v4
1717
with:
1818
fetch-depth: 0
1919

2020
- name: Set up Go
21-
uses: actions/setup-go@v4
21+
uses: actions/setup-go@v5
2222
with:
2323
go-version-file: go.mod
2424

2525
- name: Set up Task
26-
uses: arduino/setup-task@v1
26+
uses: arduino/setup-task@v2
2727
with:
2828
repo-token: ${{ secrets.GITHUB_TOKEN }}
2929

@@ -32,7 +32,7 @@ jobs:
3232
uses: mach-composer/check-changie-changes-action@main
3333

3434
- name: golangci-lint
35-
uses: golangci/golangci-lint-action@v3
35+
uses: golangci/golangci-lint-action@v7
3636
with:
3737
args: --issues-exit-code=0 --timeout=5m
3838

@@ -43,16 +43,16 @@ jobs:
4343
cp coverage.out output/coverage.out
4444
4545
- name: Upload to codecov
46-
uses: codecov/codecov-action@v3
46+
uses: codecov/codecov-action@v5
4747

4848
- name: Upload artifacts
49-
uses: actions/upload-artifact@v2
49+
uses: actions/upload-artifact@v4
5050
with:
5151
name: output
5252
path: output/**/*
5353

5454
- name: build binary
55-
uses: goreleaser/goreleaser-action@v3
55+
uses: goreleaser/goreleaser-action@v6
5656
with:
5757
args: build --snapshot --clean --single-target
5858
env:

.github/workflows/release-beta.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@ jobs:
2525
run: git fetch --force --tags
2626

2727
- name: Set up Go
28-
uses: actions/setup-go@v4
28+
uses: actions/setup-go@v5
2929
with:
3030
go-version-file: go.mod
3131

3232
- name: Set up Task
33-
uses: arduino/setup-task@v1
33+
uses: arduino/setup-task@v2
3434
with:
3535
repo-token: ${{ secrets.GITHUB_TOKEN }}
3636

@@ -63,7 +63,7 @@ jobs:
6363
shell: bash
6464

6565
- name: GoReleaser
66-
uses: goreleaser/goreleaser-action@v5
66+
uses: goreleaser/goreleaser-action@v6
6767
with:
6868
args: release --clean --skip=validate --release-notes ${{ steps.save_changes.outputs.changelog_file }}
6969
env:
@@ -74,7 +74,7 @@ jobs:
7474
SKIP_UPLOAD: true
7575

7676
- name: Upload release
77-
uses: actions/upload-artifact@v3
77+
uses: actions/upload-artifact@v4
7878
with:
7979
name: mach-composer-plugin-honeycomb
8080
path: dist/*

.github/workflows/release.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
- name: Check out code
11-
uses: actions/checkout@v3
11+
uses: actions/checkout@v4
1212

1313
- name: Set up Go
14-
uses: actions/setup-go@v3
14+
uses: actions/setup-go@v5
1515
with:
1616
go-version-file: go.mod
1717

1818
- name: Set up Task
19-
uses: arduino/setup-task@v1
19+
uses: arduino/setup-task@v2
2020
with:
2121
repo-token: ${{ secrets.GITHUB_TOKEN }}
2222

@@ -33,7 +33,7 @@ jobs:
3333
echo RELEASE_NOTES_PATH=.changes/${{ steps.latest.outputs.output }}.md >> $GITHUB_ENV
3434
3535
- name: Create release
36-
uses: goreleaser/goreleaser-action@v3
36+
uses: goreleaser/goreleaser-action@v6
3737
with:
3838
args: --clean --release-notes=${{ env.RELEASE_NOTES_PATH }} --skip=validate
3939
env:
@@ -42,7 +42,7 @@ jobs:
4242
GOPATH: ${{ env.GOPATH }}
4343

4444
- name: Upload release
45-
uses: actions/upload-artifact@v3
45+
uses: actions/upload-artifact@v4
4646
with:
4747
name: mach-composer-plugin-honeycomb
4848
path: dist/*

0 commit comments

Comments
 (0)