Skip to content
This repository was archived by the owner on May 24, 2023. It is now read-only.

Commit b734600

Browse files
Bump actions/checkout from 2 to 3 (#46)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 603b1c6 commit b734600

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
runs-on: ubuntu-20.04
3030
steps:
3131
- name: Checkout Repository
32-
uses: actions/checkout@v2
32+
uses: actions/checkout@v3
3333
- name: Determine Go version from go.mod
3434
run: echo "GO_VERSION=$(grep "go 1." go.mod | cut -d " " -f 2)" >> $GITHUB_ENV
3535
- name: Setup Golang Environment
@@ -49,7 +49,7 @@ jobs:
4949
runs-on: ubuntu-20.04
5050
steps:
5151
- name: Checkout Repository
52-
uses: actions/checkout@v2
52+
uses: actions/checkout@v3
5353
- name: Determine Go version from go.mod
5454
run: echo "GO_VERSION=$(grep "go 1." go.mod | cut -d " " -f 2)" >> $GITHUB_ENV
5555
- name: Setup Golang Environment
@@ -65,7 +65,7 @@ jobs:
6565
needs: [binary, unit-tests]
6666
steps:
6767
- name: Checkout Repository
68-
uses: actions/checkout@v2
68+
uses: actions/checkout@v3
6969
- name: Fetch Cached Artifacts
7070
uses: actions/cache@v2
7171
with:

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535

3636
steps:
3737
- name: Checkout repository
38-
uses: actions/checkout@v2
38+
uses: actions/checkout@v3
3939

4040
# Initializes the CodeQL tools for scanning.
4141
- name: Initialize CodeQL

.github/workflows/fossa.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-20.04
1515
steps:
1616
- name: Checkout Repository
17-
uses: actions/checkout@v2
17+
uses: actions/checkout@v3
1818
- name: Scan
1919
uses: fossas/fossa-action@v1
2020
with:

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: ubuntu-20.04
2323
steps:
2424
- name: Checkout Repository
25-
uses: actions/checkout@v2
25+
uses: actions/checkout@v3
2626
- name: Output Variables
2727
id: vars
2828
run: echo "::set-output name=go_version::$(grep "go 1." go.mod | cut -d " " -f 2)"

0 commit comments

Comments
 (0)