Skip to content
This repository has been archived by the owner on Apr 14, 2024. It is now read-only.

chore(deps): bump actions/checkout from 2 to 3 #18

Merged
merged 1 commit into from
May 27, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Restore Module Cache
uses: actions/cache@v2
with:
Expand Down
22 changes: 11 additions & 11 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
# runs-on: ubuntu-latest
# steps:
# - name: Checkout
# uses: actions/checkout@v2
# uses: actions/checkout@v3
# - name: ShellCheck
# run: shellcheck -x $(find . -name '*.sh')

Expand Down Expand Up @@ -58,7 +58,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Setup Go 1.17
uses: actions/setup-go@v2
with:
Expand All @@ -73,7 +73,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Setup Go 1.17
uses: actions/setup-go@v2
with:
Expand All @@ -88,7 +88,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: chart checks
run: make chart-checks

Expand All @@ -97,7 +97,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Restore Module Cache
uses: actions/cache@v2
with:
Expand All @@ -123,7 +123,7 @@ jobs:
needs: build
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Restore Module Cache
uses: actions/cache@v2
with:
Expand Down Expand Up @@ -156,7 +156,7 @@ jobs:
needs: build
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Restore Module Cache
uses: actions/cache@v2
with:
Expand Down Expand Up @@ -187,7 +187,7 @@ jobs:
CTR_REGISTRY: "localhost:5000"
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Build docker images
env:
DOCKER_BUILDX_OUTPUT: type=docker
Expand All @@ -209,7 +209,7 @@ jobs:
CTR_REGISTRY: "localhost:5000" # unused for kind, but currently required in framework
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Restore Module Cache
uses: actions/cache@v2
with:
Expand Down Expand Up @@ -278,7 +278,7 @@ jobs:
needs: [build]
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Restore Module Cache
uses: actions/cache@v2
Expand Down Expand Up @@ -326,7 +326,7 @@ jobs:
CTR_REGISTRY: flomesh
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Docker Login
run: docker login --username "$DOCKER_USER" --password-stdin <<< "$DOCKER_PASS"
- name: Push images with "latest-main" tag
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nightly-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
CTR_REGISTRY: flomesh
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Docker Login
run: docker login --username "$DOCKER_USER" --password-stdin <<< "$DOCKER_PASS"
- name: Push images with "latest-nightly" tag
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nightly-noinstall.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
KUBECONFIG: ${{ github.workspace }}/kind-kubeconfig
steps:
- name: Checkout v2
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Set random cluster name
run: echo "KIND_CLUSTER_NAME=kind-e2e-$(openssl rand -hex 6)" >> $GITHUB_ENV
- name: Setup Kind
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pre-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
BUILD_DATE: "$$(date +%Y-%m-%d-%H:%M)"
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Docker Login
run: docker login --username "$DOCKER_USER" --password-stdin <<< "$DOCKER_PASS"
- name: Push images with version tag
Expand All @@ -56,7 +56,7 @@ jobs:
CTR_TAG: ${{ needs.version.outputs.version }}
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Setup Trivy
run: make trivy-ci-setup
- name: Scan docker images for vulnerabilities
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Restore Module Cache
Expand Down