8000 Bump actions/checkout from 2 to 3 by dependabot[bot] · Pull Request #5647 · allenai/allennlp · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
This repository was archived by the owner on Dec 16, 2022. It is now read-only.

Bump actions/checkout from 2 to 3 #5647

Merged
merged 2 commits into from
Jun 21, 2022
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/cffconvert.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out a copy of the repository
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Check whether the citation metadata from CITATION.cff is valid
uses: citation-file-format/cffconvert-github-action@2.0.0
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
if: github.event_name == 'pull_request'

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

- name: Check if source files have changed
run: |
Expand All @@ -62,7 +62,7 @@ jobs:
runs-on: ubuntu-latest

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

- name: Setup Python
uses: actions/setup-python@v2
Expand Down Expand Up @@ -119,7 +119,7 @@ jobs:
mv coverage.xml ../

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

- uses: conda-incubator/setup-miniconda@v2
with:
Expand Down Expand Up @@ -219,7 +219,7 @@ jobs:

steps:
# Need to checkout code to get the coverage config.
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Download coverage report from CPU tests
uses: actions/download-artifact@v3
Expand Down Expand Up @@ -255,7 +255,7 @@ jobs:
timeout-minutes: 18
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- uses: conda-incubator/setup-miniconda@v2
with:
Expand Down Expand Up @@ -355,7 +355,7 @@ jobs:
flavor: ['', '[all]']

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

- name: Setup Python
uses: actions/setup-python@v2
Expand Down Expand Up @@ -403,7 +403,7 @@ jobs:
cuda: ['11.3']

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

- name: Set image name and torch version
env:
Expand Down Expand Up @@ -457,7 +457,7 @@ jobs:
if: github.repository == 'allenai/allennlp'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v3

- name: Setup SSH Client 🔑
if: github.event_name == 'release' || github.event_name == 'push'
Expand Down Expand Up @@ -617,7 +617,7 @@ jobs:
runs-on: ubuntu-latest

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

- name: Setup Python
uses: actions/setup-python@v2
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/issues.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Setup Python
uses: actions/setup-python@v1
Expand All @@ -38,7 +38,7 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Setup Python
uses: actions/setup-python@v1
Expand Down
0