Skip to content

Commit

Permalink
Merge pull request #24 from kubism/dependabot/github_actions/actions/…
Browse files Browse the repository at this point in the history
…checkout-3

ghactions: bump actions/checkout from 2 to 3
  • Loading branch information
jastBytes authored Mar 3, 2022
2 parents d69cb83 + 7c40991 commit 050a3e0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/backup-operator-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
Tests: # Name of job
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: actions/setup-go@v2
with:
go-version: '^1.16.5'
Expand All @@ -19,7 +19,7 @@ jobs:
Lint:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: actions/setup-go@v2
with:
go-version: '^1.16.5'
Expand All @@ -31,7 +31,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
# https://docs.github.com/en/actions/guides/publishing-docker-images#publishing-images-to-github-packages
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: docker/login-action@6af3c118c8376c675363897acf1757f7a9be6583
with:
registry: ${{ env.REGISTRY }}
Expand All @@ -53,7 +53,7 @@ jobs:
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- run: git config --global user.email "deploy-bot@kubism.github.com"
- run: git config --global user.name "Deploy Bot"
- run: pip3 install --no-cache-dir -r ci/dev-requirements.txt
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:

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

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand Down

0 comments on commit 050a3e0

Please sign in to comment.