Skip to content

Commit

Permalink
Update actions/checkout requirement to v2.3.4 (#2073)
Browse files Browse the repository at this point in the history
Updates the requirements on [actions/checkout](https://github.com/actions/checkout) to permit the latest version.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/commits/5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f)

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] committed Mar 16, 2021
1 parent 8c65d7e commit c25a025
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/check-translations-lengths.yml
Expand Up @@ -30,14 +30,14 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Checkout Code
uses: actions/checkout@v2.3.3
uses: actions/checkout@v2.3.4
with:
path: this_run
# Full git history is needed to get a proper list of changed files
fetch-depth: 0
- name: Checkout Code
if: github.event_name == 'pull_request'
uses: actions/checkout@v2.3.3
uses: actions/checkout@v2.3.4
with:
path: original
ref: main
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/code-static-analysis.yml
Expand Up @@ -32,7 +32,7 @@ jobs:
language: ['javascript', 'python']
steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v2.3.4
- name: Set up Python 3.8
uses: actions/setup-python@v2.2.1
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/compress-images.yml
Expand Up @@ -43,7 +43,7 @@ jobs:
github.event.pull_request.head.repo.full_name == github.repository)
steps:
- name: Checkout Branch
uses: actions/checkout@v2.3.3
uses: actions/checkout@v2.3.4
- name: Run Image Compression
id: calibre
uses: calibreapp/image-actions@main
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linter.yml
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Checkout Code
uses: actions/checkout@v2.3.3
uses: actions/checkout@v2.3.4
with:
# Full git history is needed to get a proper list of changed files within `super-linter`
fetch-depth: 0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/predeploy.yml
Expand Up @@ -29,7 +29,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Checkout branch
uses: actions/checkout@v2.3.3
uses: actions/checkout@v2.3.4
- name: Setup Node.js for use with actions
uses: actions/setup-node@v2.1.5
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/production-checks.yml
Expand Up @@ -24,7 +24,7 @@ jobs:
if: github.repository == 'HTTPArchive/almanac.httparchive.org'
steps:
- name: Checkout branch
uses: actions/checkout@v2.3.3
uses: actions/checkout@v2.3.4
- name: Set the list of URLs for Lighthouse to check
run: ./src/tools/scripts/set_lighthouse_urls.sh -p
- name: Audit URLs using Lighthouse
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-template-changes.yml
Expand Up @@ -29,7 +29,7 @@ jobs:
if: github.repository == 'HTTPArchive/almanac.httparchive.org'
steps:
- name: Checkout Code
uses: actions/checkout@v2.3.3
uses: actions/checkout@v2.3.4
with:
fetch-depth: 0
- name: Setup Node.js for use with actions
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_website.yml
Expand Up @@ -16,7 +16,7 @@ jobs:
if: github.repository == 'HTTPArchive/almanac.httparchive.org'
steps:
- name: Checkout branch
uses: actions/checkout@v2.3.3
uses: actions/checkout@v2.3.4
with:
# Full git history is needed to get a proper list of changed files within `super-linter`
fetch-depth: 0
Expand Down

0 comments on commit c25a025

Please sign in to comment.