Skip to content

Commit

Permalink
CI: 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 and trflynn89 committed Sep 11, 2023
1 parent b738929 commit 38d9c4d
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 15 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@ jobs:
# Pull requests can trail behind `master` and can cause breakage if merging before running the CI checks on an updated branch.
# Luckily, GitHub creates and maintains a merge branch that is updated whenever the target or source branch is modified. By
# checking this branch out, we gain a stabler `master` at the cost of reproducibility.
- uses: actions/checkout@v3
- uses: actions/checkout@v4
if: ${{ github.event_name != 'pull_request' }}

- uses: actions/checkout@v3
- uses: actions/checkout@v4
if: ${{ github.event_name == 'pull_request' }}
with:
ref: refs/pull/${{ github.event.pull_request.number }}/merge
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dev-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
steps:

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

- name: Login to GitHub Container Registry
uses: docker/login-action@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/label-pull-requests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
if: always() && github.repository == 'SerenityOS/serenity'

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

- name: Label pull request
uses: actions/github-script@v6
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/libjs-test262.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,16 @@ jobs:
rm -rf "${{ github.workspace }}/*"
- name: Checkout SerenityOS/serenity
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Checkout SerenityOS/libjs-test262
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: SerenityOS/libjs-test262
path: libjs-test262

- name: Checkout SerenityOS/libjs-test262-data
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: SerenityOS/libjs-test262-data
path: libjs-test262-data
Expand All @@ -39,13 +39,13 @@ jobs:
run: git lfs checkout

- name: Checkout tc39/test262
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: tc39/test262
path: test262

- name: Checkout tc39/test262-parser-tests
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: tc39/test262-parser-tests
path: test262-parser-tests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/manpages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-22.04
if: always() && github.repository == 'SerenityOS/serenity' && github.ref == 'refs/heads/master'
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: r-lib/actions/setup-pandoc@v2
with:
pandoc-version: '2.13'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pvs-studio-static-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
PVS_STUDIO_ANALYSIS_ARCH: x86_64
if: always() && github.repository == 'SerenityOS/serenity' && github.ref == 'refs/heads/master'
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: "Configure PVS-Studio Repository"
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/serenity-js-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:

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

- name: Install dependencies Ubuntu
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/social-media.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
if: always() && github.repository == 'SerenityOS/serenity' && github.ref == 'refs/heads/master'

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: '14'
Expand All @@ -28,7 +28,7 @@ jobs:
if: always() && github.repository == 'SerenityOS/serenity' && github.ref == 'refs/heads/master'

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: '14'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sonar-cloud-static-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
SONAR_SERVER_URL: "https://sonarcloud.io"
SONAR_ANALYSIS_ARCH: x86_64
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis

Expand Down

0 comments on commit 38d9c4d

Please sign in to comment.