Skip to content

Commit e98af0b

Browse files
committed
Updated workflows
1 parent 540025c commit e98af0b

File tree

4 files changed

+26
-78
lines changed

4 files changed

+26
-78
lines changed

.github/dependabot.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# To get started with Dependabot version updates, you'll need to specify which
2+
# package ecosystems to update and where the package manifests are located.
3+
# Please see the documentation for all configuration options:
4+
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
5+
6+
version: 2
7+
updates:
8+
- package-ecosystem: "" # See documentation for possible values
9+
directory: "/" # Location of package manifests
10+
schedule:
11+
interval: "weekly"

.github/workflows/build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ jobs:
99

1010
steps:
1111
- name: Checkout repository
12-
uses: actions/checkout@v2
12+
uses: actions/checkout@v4
1313

1414
- name: Set up Go
15-
uses: actions/setup-go@v3
15+
uses: actions/setup-go@v5
1616
with:
17-
go-version: '>=1.19'
17+
go-version: '>=1.24'
1818

1919
- name: Set up linters
2020
run: make install-tools
@@ -32,12 +32,12 @@ jobs:
3232
runs-on: ubuntu-latest
3333
steps:
3434
- name: Check out code into the Go module directory
35-
uses: actions/checkout@v2
35+
uses: actions/checkout@v4
3636

3737
- name: Set up Go
38-
uses: actions/setup-go@v3
38+
uses: actions/setup-go@v5
3939
with:
40-
go-version: '>=1.18'
40+
go-version: '>=1.24'
4141
id: go
4242

4343
- name: Get dependencies

.github/workflows/codeql-analysis.yml

Lines changed: 0 additions & 67 deletions
This file was deleted.

.github/workflows/release.yaml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,26 +5,30 @@ on:
55
types:
66
- created
77

8+
permissions:
9+
contents: write
10+
packages: write
11+
812
jobs:
913
goreleaser:
1014
runs-on: ubuntu-latest
1115
steps:
1216
- name: Set up Go
13-
uses: actions/setup-go@v3
17+
uses: actions/setup-go@v5
1418
with:
15-
go-version: '>=1.19'
19+
go-version: '>=1.24'
1620
- name: Checkout
17-
uses: actions/checkout@v2
21+
uses: actions/checkout@v4
1822
with:
1923
fetch-depth: 0
2024
- name: Set up env vars
2125
run: |
2226
export FERRET_VERSION=$(sh versions.sh ferret)
2327
echo "FERRET_VERSION=$FERRET_VERSION" >> $GITHUB_ENV
2428
- name: Run GoReleaser
25-
uses: goreleaser/goreleaser-action@v4
29+
uses: goreleaser/goreleaser-action@v6
2630
with:
2731
version: latest
28-
args: release --rm-dist
32+
args: release --clean
2933
env:
3034
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)