Skip to content

Commit 8a3b723

Browse files
committed
bump GitHub Actions
1 parent 1fe9d1b commit 8a3b723

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

.github/workflows/build-lambda-zip.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
platform: [ubuntu-latest, macos-latest, windows-latest]
1717
steps:
1818
- name: Setup Go
19-
uses: actions/setup-go@v3
19+
uses: actions/setup-go@v6
2020
with:
2121
go-version: ${{ matrix.go-version }}
2222

.github/workflows/codeql-analysis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,11 @@ jobs:
3838

3939
steps:
4040
- name: Checkout repository
41-
uses: actions/checkout@v3
41+
uses: actions/checkout@v6
4242

4343
# Initializes the CodeQL tools for scanning.
4444
- name: Initialize CodeQL
45-
uses: github/codeql-action/init@v2
45+
uses: github/codeql-action/init@v4
4646
with:
4747
languages: ${{ matrix.language }}
4848
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -53,7 +53,7 @@ jobs:
5353
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
5454
# If this step fails, then you should remove it and run the build manually (see below)
5555
- name: Autobuild
56-
uses: github/codeql-action/autobuild@v2
56+
uses: github/codeql-action/autobuild@v4
5757

5858
# ℹ️ Command-line programs to run using the OS shell.
5959
# 📚 https://git.io/JvXDl
@@ -67,4 +67,4 @@ jobs:
6767
# make release
6868

6969
- name: Perform CodeQL Analysis
70-
uses: github/codeql-action/analyze@v2
70+
uses: github/codeql-action/analyze@v4

.github/workflows/lint.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ jobs:
1616
name: run golangci-golint on the project
1717
runs-on: ubuntu-latest
1818
steps:
19-
- uses: actions/checkout@v4
20-
- uses: actions/setup-go@v5
19+
- uses: actions/checkout@v6
20+
- uses: actions/setup-go@v6
2121
with:
2222
go-version: 'stable'
2323
- name: golangci-golint
24-
uses: golangci/golangci-lint-action@v6
24+
uses: golangci/golangci-lint-action@v9
2525
with:
2626
version: v1.64.5

.github/workflows/tests.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727

2828
steps:
2929
- name: Set up Go ${{ matrix.go }}
30-
uses: actions/setup-go@v3
30+
uses: actions/setup-go@v6
3131
with:
3232
go-version: ${{ matrix.go }}
3333

@@ -38,7 +38,7 @@ jobs:
3838
- run: chmod +x /usr/local/bin/aws-lambda-rie
3939

4040
- name: Check out code into the Go module directory
41-
uses: actions/checkout@v3
41+
uses: actions/checkout@v6
4242

4343
- name: Edit the go.mod file to allow tests to run for versions of go before 1.16
4444
run: >
@@ -60,7 +60,7 @@ jobs:
6060
- "1.25"
6161
steps:
6262
- name: Set up Go ${{ matrix.go }}
63-
uses: actions/setup-go@v3
63+
uses: actions/setup-go@v6
6464
with:
6565
go-version: ${{ matrix.go }}
6666

@@ -69,15 +69,15 @@ jobs:
6969
- run: chmod +x /usr/local/bin/aws-lambda-rie
7070

7171
- name: Check out code into the Go module directory
72-
uses: actions/checkout@v3
72+
uses: actions/checkout@v6
7373

7474
- name: go test
7575
run: go test -v -race -coverprofile=coverage.txt -covermode=atomic ./...
7676

7777
- name: Upload coverage to Codecov
78-
uses: codecov/codecov-action@v3
78+
uses: codecov/codecov-action@v5
7979
with:
80-
file: ./coverage.txt
80+
files: ./coverage.txt
8181
env_vars: GO
8282
env:
8383
GO: ${{ matrix.go }}

0 commit comments

Comments
 (0)