Skip to content

Commit

Permalink
Merge pull request #540 from entur/renovate/actions-checkout-4.x
Browse files Browse the repository at this point in the history
Update actions/checkout action from vv3 to v4
  • Loading branch information
testower authored Dec 22, 2023
2 parents 7b01a47 + ddf026a commit 6828cb3
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build_and_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ name: Build and deploy
jobs:
build:
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Cache node modules
id: cache-npm
uses: actions/cache@v3
Expand Down Expand Up @@ -59,7 +59,7 @@ jobs:
needs: [build]
environment: 'dev'
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Download all workflow run artifacts
uses: actions/download-artifact@v4
- name: Copy favicon
Expand All @@ -76,7 +76,7 @@ jobs:
needs: [build]
environment: 'dev'
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Download all workflow run artifacts
uses: actions/download-artifact@v4
- name: Copy favicon
Expand All @@ -93,7 +93,7 @@ jobs:
needs: [deploy_dev]
environment: 'staging'
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Download all workflow run artifacts
uses: actions/download-artifact@v4
- name: Copy favicon
Expand All @@ -110,7 +110,7 @@ jobs:
needs: [deploy_dev, deploy_staging]
environment: 'prod'
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Download all workflow run artifacts
uses: actions/download-artifact@v4
- name: Copy favicon
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/maintenance_mode_dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
runs-on: ubuntu-latest
environment: 'dev'
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Download all workflow run artifacts
uses: actions/download-artifact@v4
- name: Copy maintenance mode file
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/maintenance_mode_prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
runs-on: ubuntu-latest
environment: 'prod'
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Download all workflow run artifacts
uses: actions/download-artifact@v4
- name: Copy maintenance mode file
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/maintenance_mode_staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
runs-on: ubuntu-latest
environment: 'staging'
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Download all workflow run artifacts
uses: actions/download-artifact@v4
- name: Copy maintenance mode file
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pull_request_build_and_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
if: '${{ github.event.pull_request.head.repo.full_name == github.repository }}'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Cache node modules
id: cache-npm
uses: actions/cache@v3
Expand Down

0 comments on commit 6828cb3

Please sign in to comment.