Skip to content

Commit

Permalink
chore(deps): update actions/checkout action to v3 (#1632)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored Oct 6, 2022
1 parent ca4295c commit 8593153
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-api-catalog-service.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
runs-on: ubuntu-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Generate a short tag using GITHUB_SHA
run: echo "SHA_TAG=$(echo $GITHUB_SHA | cut -c 1-6)" >> $GITHUB_ENV
- if: github.event.inputs.tags == '' && startsWith(github.ref, 'refs/heads/master')
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-api-gateway.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
runs-on: ubuntu-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Generate a short tag using GITHUB_SHA
run: echo "SHA_TAG=$(echo $GITHUB_SHA | cut -c 1-6)" >> $GITHUB_ENV
- if: github.event.inputs.tags == '' && startsWith(github.ref, 'refs/heads/master')
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-apps-service.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
runs-on: ubuntu-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Generate a short tag using GITHUB_SHA
run: echo "SHA_TAG=$(echo $GITHUB_SHA | cut -c 1-6)" >> $GITHUB_ENV
- if: github.event.inputs.tags == '' && startsWith(github.ref, 'refs/heads/master')
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-feedback-service.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
runs-on: ubuntu-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Generate a short tag using GITHUB_SHA
run: echo "SHA_TAG=$(echo $GITHUB_SHA | cut -c 1-6)" >> $GITHUB_ENV
- if: github.event.inputs.tags == '' && startsWith(github.ref, 'refs/heads/master')
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-lighthouse-service.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
runs-on: ubuntu-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Generate a short tag using GITHUB_SHA
run: echo "SHA_TAG=$(echo $GITHUB_SHA | cut -c 1-6)" >> $GITHUB_ENV
- if: github.event.inputs.tags == '' && startsWith(github.ref, 'refs/heads/master')
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-notifications-service.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
runs-on: ubuntu-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Generate a short tag using GITHUB_SHA
run: echo "SHA_TAG=$(echo $GITHUB_SHA | cut -c 1-6)" >> $GITHUB_ENV
- if: github.event.inputs.tags == '' && startsWith(github.ref, 'refs/heads/master')
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-reverse-proxy-service.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
runs-on: ubuntu-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Generate a short tag using GITHUB_SHA
run: echo "SHA_TAG=$(echo $GITHUB_SHA | cut -c 1-6)" >> $GITHUB_ENV
- if: github.event.inputs.tags == '' && startsWith(github.ref, 'refs/heads/master')
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-search-service.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
runs-on: ubuntu-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Generate a short tag using GITHUB_SHA
run: echo "SHA_TAG=$(echo $GITHUB_SHA | cut -c 1-6)" >> $GITHUB_ENV
- if: github.event.inputs.tags == '' && startsWith(github.ref, 'refs/heads/master')
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-user-group-service.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
runs-on: ubuntu-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Generate a short tag using GITHUB_SHA
run: echo "SHA_TAG=$(echo $GITHUB_SHA | cut -c 1-6)" >> $GITHUB_ENV
- if: github.event.inputs.tags == '' && startsWith(github.ref, 'refs/heads/master')
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 @@ -22,7 +22,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
# We must fetch at least the immediate parents so that if this is
# a pull request then we can checkout the head.
Expand Down

0 comments on commit 8593153

Please sign in to comment.