From 67232f00d9ee10c8cdeed2ef41b5bfd7e195126f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 2 Mar 2022 17:03:05 +0000 Subject: [PATCH] build(deps): 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](https://github.com/actions/checkout/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/on-main-push-charts.yaml | 2 +- .github/workflows/on-main-push.yaml | 2 +- .github/workflows/on-pr-charts.yaml | 4 ++-- .github/workflows/on-pr.yaml | 16 ++++++++-------- .github/workflows/on-tag.yaml | 2 +- .github/workflows/periodics-daily.yaml | 8 ++++---- 6 files changed, 17 insertions(+), 17 deletions(-) diff --git a/.github/workflows/on-main-push-charts.yaml b/.github/workflows/on-main-push-charts.yaml index be42da0..6a787da 100644 --- a/.github/workflows/on-main-push-charts.yaml +++ b/.github/workflows/on-main-push-charts.yaml @@ -11,7 +11,7 @@ jobs: name: Publish latest chart runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Publish Helm chart uses: stefanprodan/helm-gh-pages@master with: diff --git a/.github/workflows/on-main-push.yaml b/.github/workflows/on-main-push.yaml index 23db1d8..f7df5d3 100644 --- a/.github/workflows/on-main-push.yaml +++ b/.github/workflows/on-main-push.yaml @@ -10,7 +10,7 @@ jobs: name: "Build, scan, and publish tagged image" runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Find go version run: | diff --git a/.github/workflows/on-pr-charts.yaml b/.github/workflows/on-pr-charts.yaml index 43f282c..12fb36d 100644 --- a/.github/workflows/on-pr-charts.yaml +++ b/.github/workflows/on-pr-charts.yaml @@ -22,7 +22,7 @@ jobs: - install steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: "0" @@ -49,7 +49,7 @@ jobs: runs-on: ubuntu-latest needs: test-chart steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 # Default name for helm/kind-action kind clusters is "chart-testing" - name: Create 1 node kind cluster diff --git a/.github/workflows/on-pr.yaml b/.github/workflows/on-pr.yaml index c87093e..3659d81 100644 --- a/.github/workflows/on-pr.yaml +++ b/.github/workflows/on-pr.yaml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-18.04 steps: - name: checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Find go version run: | GO_VERSION=$(awk '/^go/ {print $2};' go.mod) @@ -31,7 +31,7 @@ jobs: name: Lint bash code with shellcheck runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Run ShellCheck uses: bewuethr/shellcheck-action@v2 @@ -39,7 +39,7 @@ jobs: name: Lint golang code runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Find go version run: | GO_VERSION=$(awk '/^go/ {print $2};' go.mod) @@ -62,7 +62,7 @@ jobs: name: Check docs for incorrect links runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Link Checker id: lc uses: peter-evans/link-checker@v1 @@ -78,7 +78,7 @@ jobs: name: Build image and scan it against known vulnerabilities runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Find go version run: | GO_VERSION=$(awk '/^go/ {print $2};' go.mod) @@ -110,7 +110,7 @@ jobs: - "1.22" - "1.23" steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Find go version run: | GO_VERSION=$(awk '/^go/ {print $2};' go.mod) @@ -181,7 +181,7 @@ jobs: kubernetes: - "1.21" steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Find go version run: | GO_VERSION=$(awk '/^go/ {print $2};' go.mod) @@ -272,7 +272,7 @@ jobs: # kubernetes: # - "1.20" # steps: - # - uses: actions/checkout@v2 + # - uses: actions/checkout@v3 # - name: Find go version # run: | # GO_VERSION=$(awk '/^go/ {print $2};' go.mod) diff --git a/.github/workflows/on-tag.yaml b/.github/workflows/on-tag.yaml index fd8bea2..e4fdd5c 100644 --- a/.github/workflows/on-tag.yaml +++ b/.github/workflows/on-tag.yaml @@ -12,7 +12,7 @@ jobs: name: "Build, scan, and publish tagged image" runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Find go version run: | GO_VERSION=$(awk '/^go/ {print $2};' go.mod) diff --git a/.github/workflows/periodics-daily.yaml b/.github/workflows/periodics-daily.yaml index c39970b..4751a35 100644 --- a/.github/workflows/periodics-daily.yaml +++ b/.github/workflows/periodics-daily.yaml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-18.04 steps: - name: checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: run tests run: go test -json ./... > test.json - name: Annotate tests @@ -39,7 +39,7 @@ jobs: name: Check docs for incorrect links runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Link Checker id: lc uses: peter-evans/link-checker@v1 @@ -52,7 +52,7 @@ jobs: name: Build image and scan it against known vulnerabilities runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Find go version run: | GO_VERSION=$(awk '/^go/ {print $2};' go.mod) @@ -78,7 +78,7 @@ jobs: - "1.22" - "1.23" steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Find go version run: | GO_VERSION=$(awk '/^go/ {print $2};' go.mod)