Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Roll back actions/checkout action to v4.0.0 #1848

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions .github/workflows/artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
artifacts:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.0
- uses: actions/checkout@v4.0.0
- name: Artifacts
shell: bash
run: |
Expand All @@ -37,7 +37,7 @@ jobs:
needs: artifacts
if: needs.artifacts.result == 'success'
steps:
- uses: actions/checkout@v4.1.0
- uses: actions/checkout@v4.0.0
- name: README
shell: bash
run: |
Expand Down Expand Up @@ -89,7 +89,7 @@ jobs:
needs: artifacts
if: needs.artifacts.result == 'success'
steps:
- uses: actions/checkout@v4.1.0
- uses: actions/checkout@v4.0.0
- name: Downloadlist
shell: bash
run: |
Expand Down Expand Up @@ -141,7 +141,7 @@ jobs:
needs: artifacts
if: needs.artifacts.result == 'success'
steps:
- uses: actions/checkout@v4.1.0
- uses: actions/checkout@v4.0.0
- name: Engines
shell: bash
run: |
Expand Down Expand Up @@ -185,7 +185,7 @@ jobs:
needs: artifacts
if: needs.artifacts.result == 'success'
steps:
- uses: actions/checkout@v4.1.0
- uses: actions/checkout@v4.0.0
- name: Bundled
shell: bash
run: |
Expand Down Expand Up @@ -233,7 +233,7 @@ jobs:
run: |
pip install setuptools==57.4.0
pip install git+https://github.com/EIGHTFINITE/demjson.git@master
- uses: actions/checkout@v4.1.0
- uses: actions/checkout@v4.0.0
with:
ref: artifacts
- name: jsonlint
Expand All @@ -253,7 +253,7 @@ jobs:
needs: artifacts
if: needs.artifacts.result == 'success'
steps:
- uses: actions/checkout@v4.1.0
- uses: actions/checkout@v4.0.0
with:
ref: artifacts
path: DownloadItYourself
Expand Down Expand Up @@ -283,7 +283,7 @@ jobs:
needs: [artifacts_install]
if: ${{ needs.artifacts_install.result == 'success' }}
steps:
- uses: actions/checkout@v4.1.0
- uses: actions/checkout@v4.0.0
with:
ref: artifacts
- name: audit
Expand All @@ -296,7 +296,7 @@ jobs:
needs: [artifacts_jsonlint, artifacts_audit]
if: ${{ needs.artifacts_jsonlint.result == 'success' && needs.artifacts_audit.result == 'success' }}
steps:
- uses: actions/checkout@v4.1.0
- uses: actions/checkout@v4.0.0
with:
ref: artifacts
- name: Release
Expand Down Expand Up @@ -332,7 +332,7 @@ jobs:
run: |
pip install setuptools==57.4.0
pip install git+https://github.com/EIGHTFINITE/demjson.git@master
- uses: actions/checkout@v4.1.0
- uses: actions/checkout@v4.0.0
with:
ref: latest
- name: jsonlint
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/authors.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
authors:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.0
- uses: actions/checkout@v4.0.0
with:
fetch-depth: 0
- name: AUTHORS
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/automerge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
package_json:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.0
- uses: actions/checkout@v4.0.0
continue-on-error: true
with:
ref: ${{ github.event.pull_request.head.ref }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
language: [ 'javascript' ]
steps:
- name: Checkout repository
uses: actions/checkout@v4.1.0
uses: actions/checkout@v4.0.0
- name: Initialize CodeQL
uses: github/codeql-action/[email protected]
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dependency-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: 'Checkout Repository'
uses: actions/checkout@v4.1.0
uses: actions/checkout@v4.0.0
- name: 'Dependency Review'
uses: actions/[email protected]
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/jsonlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
run: |
pip install setuptools==57.4.0
pip install git+https://github.com/EIGHTFINITE/demjson.git@master
- uses: actions/checkout@v4.1.0
- uses: actions/checkout@v4.0.0
with:
path: DownloadItYourself
- name: jsonlint
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/links.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
links:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.0
- uses: actions/checkout@v4.0.0
- name: lychee
id: lychee
uses: lycheeverse/[email protected]
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
install:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.0
- uses: actions/checkout@v4.0.0
with:
path: DownloadItYourself
- name: install
Expand Down Expand Up @@ -45,7 +45,7 @@ jobs:
needs: [install]
if: ${{ needs.install.result == 'success' }}
steps:
- uses: actions/checkout@v4.1.0
- uses: actions/checkout@v4.0.0
- name: audit
shell: bash
run: |
Expand Down
Loading