Skip to content
This repository has been archived by the owner on May 3, 2024. It is now read-only.

Commit

Permalink
chore(deps): bump actions/checkout from 2 to 4 (#1121)
Browse files Browse the repository at this point in the history
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Matthew Mallimo <matthew.c.mallimo@aexp.com>
Co-authored-by: Jonny Adshead <JAdshead@users.noreply.github.com>
  • Loading branch information
3 people authored Sep 7, 2023
1 parent 09eac6b commit 7219da9
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/bundle-size.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: actions/setup-node@v1
with:
node-version: 16.x
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/on-pr-and-trunk_codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:

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

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
node-version: [16.x]
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 0
persist-credentials: false
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/on-pr_dangerJS.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ jobs:
dangerJS:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/on-pr_one-app-integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
name: One App Integration Tests - PR
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: actions/cache@v3
with:
path: ~/.npm
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/5.x.x'
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- run: git fetch --prune --unshallow
- uses: actions/cache@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-step-2_automatic_tag-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
if: github.event.pull_request.merged && ( github.head_ref == 'prepare-release-for-main' || github.head_ref == 'prepare-release-for-5.x.x' ) && (github.base_ref == 'main' || github.base_ref == '5.x.x')
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: get commit message
id: get-commit-message
shell: bash
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
tagversion=${{ steps.set_tag_version.outputs.tagversion }}
echo ::set-output name=dockertag::$(sed 's/^v*//' <<< "$tagversion")
# ensure tag is available
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
ref: "v${{ steps.set_docker_tag_version.outputs.dockertag }}"
- name: Trigger Production Image Publishing
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
echo ::set-output name=metatag::do_not_tag
echo For other branch: do_not_tag
fi
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
ref: "v${{ steps.set_docker_version.outputs.docker_version }}"
- name: Docker login
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
- name: Print docker version
run: |
echo "tag: ${{ steps.set_docker_version.outputs.docker_version }}"
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
ref: "v${{ steps.set_docker_version.outputs.docker_version }}"
- name: Docker login
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
else
echo ::set-output name=tagversion::${{ github.event.inputs.tag_version }}
fi
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
ref: "v${{ steps.set_tag_version.outputs.tagversion}}"
# Setup .npmrc file to publish to npm
Expand Down

0 comments on commit 7219da9

Please sign in to comment.