Skip to content

Commit

Permalink
Bump actions/checkout from 3 to 4
Browse files Browse the repository at this point in the history
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v3...v4)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Oct 17, 2023
1 parent b7ad636 commit 39bd40e
Show file tree
Hide file tree
Showing 19 changed files with 35 additions and 35 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cd-ansible.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:
steps:

- name: Checkout actions
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: signalwire/actions-template
ref: main
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/cd-centos-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,12 +69,12 @@ jobs:
environment: ${{ inputs.ENVIRONMENT }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Checkout actions
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: signalwire/actions-template
ref: main
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/cd-cloud-run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@ jobs:

steps:
- name: 'Checkout'
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Checkout actions
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: signalwire/actions-template
ref: main
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/cd-deb-syncchangelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,13 @@ jobs:
environment: ${{ inputs.ENVIRONMENT }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ secrets.PAT }}

- name: Checkout actions
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: signalwire/actions-template
ref: main
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/cd-kubernetes-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,12 +72,12 @@ jobs:
environment: ${{ inputs.ENVIRONMENT }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Checkout actions
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: signalwire/actions-template
ref: main
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/cd-libs-metadata.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:

steps:
- name: Checkout metadatarepo
uses: actions/checkout@v3
uses: actions/checkout@v4
continue-on-error: true
id: metabranch
with:
Expand All @@ -76,7 +76,7 @@ jobs:
token: ${{ secrets.GH_BOT_DEPLOY_TOKEN || github.token }}

- name: Checkout metadatarepo
uses: actions/checkout@v3
uses: actions/checkout@v4
if: steps.metabranch.outcome != 'success'
with:
repository: ${{ inputs.TARGET_REPO }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cd-retag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
steps:

- name: Checkout actions
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: signalwire/actions-template
ref: main
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/cd-rpm-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,12 @@ jobs:
permissions: write-all

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Checkout actions
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: signalwire/actions-template
ref: main
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cd-scp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:

steps:
- name: Checkout actions
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: signalwire/actions-template
ref: main
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/cd-swarm-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,12 +63,12 @@ jobs:
environment: ${{ inputs.ENVIRONMENT }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Checkout actions
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: signalwire/actions-template
ref: main
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -155,12 +155,12 @@ jobs:
IMAGE_MATRIX: ${{ fromJson(steps.out.outputs.result).image }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: ${{ inputs.REF || github.ref }}
fetch-depth: 0

- uses: actions/checkout@v3
- uses: actions/checkout@v4
name: Checkout private submoules recursively
id: private
if: ${{ inputs.SUBMODULES_RECURSIVE == true && inputs.SUBMODULES_PRIVATE == true }}
Expand All @@ -170,7 +170,7 @@ jobs:
token: ${{ secrets.GH_BOT_DEPLOY_TOKEN || github.token }}
submodules: 'recursive'

- uses: actions/checkout@v3
- uses: actions/checkout@v4
name: Checkout public submoules recursively
id: public
if: ${{ inputs.SUBMODULES_RECURSIVE == true && inputs.SUBMODULES_PRIVATE == false }}
Expand All @@ -184,7 +184,7 @@ jobs:
- run: git show -s --oneline --no-abbrev-commit >> ${{inputs.REVISION_PATH}}/REVISION

- name: Checkout actions
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: signalwire/actions-template
ref: main
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,19 +108,19 @@ jobs:
environment: ${{ inputs.ENVIRONMENT }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

- uses: actions/checkout@v3
- uses: actions/checkout@v4
if: ${{ inputs.SUBMODULES_RECURSIVE == true }}
name: Checkout submodules
with:
ssh-key: ${{ secrets.GH_BOT_DEPLOY_KEY }}
submodules: 'recursive'

- name: Checkout actions
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: signalwire/actions-template
ref: main
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-deb-packages-v2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
name: Build
environment: ${{ inputs.ENVIRONMENT }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci-deb-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,12 @@ jobs:
environment: ${{ inputs.ENVIRONMENT }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Checkout actions
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: signalwire/actions-template
ref: main
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-rpm-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
environment: ${{ inputs.ENVIRONMENT }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
environment: ${{ inputs.ENVIRONMENT }}
name: Cypress
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

Expand All @@ -75,7 +75,7 @@ jobs:
with:
node-version: ${{ inputs.NODE_VERSION }}

- uses: actions/checkout@v3
- uses: actions/checkout@v4
name: Checkout private submoules recursively
id: private
if: ${{ inputs.SUBMODULES_RECURSIVE == true && inputs.SUBMODULES_PRIVATE == true }}
Expand All @@ -84,7 +84,7 @@ jobs:
token: ${{ secrets.GH_BOT_DEPLOY_TOKEN || github.token }}
submodules: 'recursive'

- uses: actions/checkout@v3
- uses: actions/checkout@v4
name: Checkout public submoules recursively
id: public
if: ${{ inputs.SUBMODULES_RECURSIVE == true && inputs.SUBMODULES_PRIVATE == false }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/helm-local.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: azure/setup-helm@v3
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: helm version
run: helm version
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/helm-remote.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install Helm
uses: azure/setup-helm@v3
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/iac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,10 +85,10 @@ jobs:

steps:
- name: 'Checkout'
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Checkout actions
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: signalwire/actions-template
ref: main
Expand Down

0 comments on commit 39bd40e

Please sign in to comment.