Skip to content

Commit 65f8ccd

Browse files
authored
bump github actions versions (#473)
* bump github actions versions * bump checkout action version in codeql-analysis.yml
1 parent 858a4cf commit 65f8ccd

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

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

+1-1
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@v1
19+
uses: actions/setup-go@v3
2020
with:
2121
go-version: ${{ matrix.go-version }}
2222

.github/workflows/codeql-analysis.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,11 @@ jobs:
3838

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

4343
# Initializes the CodeQL tools for scanning.
4444
- name: Initialize CodeQL
45-
uses: github/codeql-action/init@v1
45+
uses: github/codeql-action/init@v2
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@v1
56+
uses: github/codeql-action/autobuild@v2
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@v1
70+
uses: github/codeql-action/analyze@v2

.github/workflows/lint.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ jobs:
88
name: run golangci-golint on the project
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/setup-go@v2
11+
- uses: actions/setup-go@v3
1212
with:
1313
go-version: '^1'
1414

1515
- run: go version
1616

17-
- uses: actions/checkout@v2
17+
- uses: actions/checkout@v3
1818

1919
- name: golangci-golint
2020
run: |

.github/workflows/tests.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
steps:
2222
- name: Set up Go ${{ matrix.go }}
23-
uses: actions/setup-go@v2
23+
uses: actions/setup-go@v3
2424
with:
2525
go-version: ${{ matrix.go }}
2626

@@ -31,13 +31,13 @@ jobs:
3131
- run: chmod +x /usr/local/bin/aws-lambda-rie
3232

3333
- name: Check out code into the Go module directory
34-
uses: actions/checkout@v2
34+
uses: actions/checkout@v3
3535

3636
- name: go test
3737
run: go test -v -race -coverprofile=coverage.txt -covermode=atomic ./...
3838

3939
- name: Upload coverage to Codecov
40-
uses: codecov/codecov-action@v2
40+
uses: codecov/codecov-action@v3
4141
with:
4242
file: ./coverage.txt
4343
env_vars: GO

0 commit comments

Comments
 (0)