Skip to content

Commit 3fc47ad

Browse files
dependabot[bot]lucacome
authored andcommitted
Bump actions/checkout from 2 to 3
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v2...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent c865135 commit 3fc47ad

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
github.event_name == 'push' || github.event_name == 'schedule'
3434
steps:
3535
- name: Checkout Repository
36-
uses: actions/checkout@v2
36+
uses: actions/checkout@v3
3737
- name: Determine NGINX Plus version
3838
run: echo "NGINX_PLUS_VERSION=$(cat Makefile | grep -m1 NGINX_PLUS_VERSION | cut -d "=" -f2)" >> $GITHUB_ENV
3939
- name: Switch Repository (Nightly)

.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
@@ -23,7 +23,7 @@ jobs:
2323
runs-on: ubuntu-20.04
2424
steps:
2525
- name: Checkout Repository
26-
uses: actions/checkout@v2
26+
uses: actions/checkout@v3
2727
- name: Output Variables
2828
id: vars
2929
run: echo "::set-output name=go_version::$(grep "go 1." go.mod | cut -d " " -f 2)"

0 commit comments

Comments
 (0)