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

Commit

Permalink
chore(deps): update actions/checkout action to v3
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Mar 16, 2023
1 parent 615661d commit cca1b5f
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,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
4 changes: 2 additions & 2 deletions .github/workflows/preproduction.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
outputs:
functions: ${{ steps.init.outputs.functions }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- id: init
uses: ./.github/actions/list-functions

Expand All @@ -37,7 +37,7 @@ jobs:
matrix:
function: ${{ fromJson(needs.init.outputs.functions) }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Use autodevops build and register
uses: SocialGouv/actions/autodevops-build-register@v1
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
outputs:
functions: ${{ steps.init.outputs.functions }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- id: init
uses: ./.github/actions/list-functions

Expand All @@ -36,7 +36,7 @@ jobs:
matrix:
function: ${{ fromJson(needs.init.outputs.functions) }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Use autodevops build and register
uses: SocialGouv/actions/autodevops-build-register@v1
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
outputs:
functions: ${{ steps.init.outputs.functions }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- id: init
uses: ./.github/actions/list-functions

Expand All @@ -37,7 +37,7 @@ jobs:
matrix:
function: ${{ fromJson(needs.init.outputs.functions) }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Use autodevops build and register
uses: SocialGouv/actions/autodevops-build-register@v1
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
outputs:
functions: ${{ steps.init.outputs.functions }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- id: init
uses: ./.github/actions/list-functions

Expand All @@ -34,7 +34,7 @@ jobs:
matrix:
functions: ${{ fromJson(needs.init.outputs.functions) }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Test ${{ matrix.functions }}
shell: bash
run: |
Expand Down

0 comments on commit cca1b5f

Please sign in to comment.