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

Bump actions/checkout from 2 to 3.1.0 #169

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build-and-publish-image.yaml
Expand Up @@ -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.1.0

- name: Find go version
run: |
Expand All @@ -23,7 +23,7 @@ jobs:
with:
go-version: "${{ steps.awk_gomod.outputs.version }}"

- uses: actions/checkout@v2
- uses: actions/checkout@v3.1.0
- name: Set up Python
uses: actions/setup-python@v2

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Expand Up @@ -35,7 +35,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3.1.0

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/end2end-tests.yml
Expand Up @@ -15,7 +15,7 @@ jobs:
python-version: ['2.7', '3.6', '3.7', '3.8', '3.9', '3.10']

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3.1.0

- name: Install K8S ${{ matrix.k8s-version }}
uses: helm/kind-action@v1.2.0
Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10']

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3.1.0

- name: Install K8S ${{ matrix.k8s-version }}
uses: helm/kind-action@v1.2.0
Expand Down Expand Up @@ -93,7 +93,7 @@ jobs:
python-version: ['2.7']

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3.1.0

- name: Install K8S ${{ matrix.k8s-version }}
uses: helm/kind-action@v1.2.0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python-ci.yml
Expand Up @@ -18,7 +18,7 @@ jobs:
python-version: ['2.7', '3.6', '3.7', '3.8', '3.9', '3.10']

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3.1.0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
Expand Down