Skip to content

Commit 0099a32

Browse files
[IMPROVED] Fix deprecation warnings by bumping GH actions to their latest version (#2048)
Co-authored-by: Andreas Deininger <adeininger@urbanonline.de>
1 parent e23b40d commit 0099a32

3 files changed

Lines changed: 11 additions & 11 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212
runs-on: ubuntu-latest-8-cores
1313
steps:
1414
- name: Checkout code
15-
uses: actions/checkout@v4
15+
uses: actions/checkout@v6
1616

1717
- name: Setup Go
18-
uses: actions/setup-go@v5
18+
uses: actions/setup-go@v6
1919
with:
2020
go-version: 'stable'
2121

@@ -47,10 +47,10 @@ jobs:
4747
coverage: true
4848
steps:
4949
- name: Checkout code
50-
uses: actions/checkout@v4
50+
uses: actions/checkout@v6
5151

5252
- name: Setup Go
53-
uses: actions/setup-go@v5
53+
uses: actions/setup-go@v6
5454
with:
5555
go-version: ${{ matrix.go }}
5656

@@ -74,4 +74,4 @@ jobs:
7474
if: matrix.coverage
7575
uses: coverallsapp/github-action@v2
7676
with:
77-
file: acc.out
77+
file: acc.out

.github/workflows/dependencies.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ jobs:
1616

1717
steps:
1818
- name: Checkout repository
19-
uses: actions/checkout@v3
19+
uses: actions/checkout@v6
2020
with:
2121
fetch-depth: 0 # Fetch all history for all branches and tags
2222

2323
- name: Set up Go
24-
uses: actions/setup-go@v5
24+
uses: actions/setup-go@v6
2525
with:
26-
go-version: '1.22'
26+
go-version: '1.26'
2727

2828
- name: Install go-licenses
2929
run: go install github.com/google/go-licenses@latest

.github/workflows/latest-server.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
- name: Checkout code
11-
uses: actions/checkout@v4
11+
uses: actions/checkout@v6
1212

1313
- name: Setup Go
14-
uses: actions/setup-go@v5
14+
uses: actions/setup-go@v6
1515
with:
1616
go-version: 'stable'
1717

@@ -24,4 +24,4 @@ jobs:
2424
shell: bash --noprofile --norc -x -eo pipefail {0}
2525
run: |
2626
go test -modfile=go_test.mod -v -run=TestNoRace -p=1 ./... --failfast -vet=off
27-
go test -modfile=go_test.mod -race -v -p=1 ./... --failfast -vet=off -tags=internal_testing
27+
go test -modfile=go_test.mod -race -v -p=1 ./... --failfast -vet=off -tags=internal_testing

0 commit comments

Comments
 (0)