Skip to content

Commit

Permalink
Bump actions/checkout from 3 to 4 (#922)
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: Chris Green <[email protected]>
  • Loading branch information
dependabot[bot] and trackleft authored Oct 5, 2023
1 parent b3a19d8 commit fd81974
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cdn-deploy-head.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ on:
jobs:
deploy:
name: Build & deploy CDN assets
runs-on: ubuntu-20.04
runs-on: ubuntu-latest

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

- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v2
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/cdn-deploy-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ on:
jobs:
deploy:
name: Build & deploy CDN assets
runs-on: ubuntu-20.04
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ github.event.client_payload.ref }}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ on:
jobs:
release:
name: Create Release
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
token: ${{ secrets.REPO_DISPATCH_TOKEN }}

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/review-site.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ on:
jobs:
lint-code:
name: Check code for linting errors
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
steps:
- name: Checkout repository to workspace
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set variables for Docker images
run: |
oldhash=${{ hashFiles('Dockerfile', 'package.json', 'package-lock.json', 'scripts/*') }}
Expand Down Expand Up @@ -62,10 +62,10 @@ jobs:
review-site:
name: Build & deploy review site
needs: lint-code
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
steps:
- name: Checkout repository to workspace
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
token: ${{ secrets.REPO_DISPATCH_TOKEN }}
fetch-depth: 20
Expand Down

0 comments on commit fd81974

Please sign in to comment.