Skip to content

Commit

Permalink
Merge pull request #1329 from OpenChemistry/dependabot/github_actions…
Browse files Browse the repository at this point in the history
…/actions/checkout-4

Bump actions/checkout from 3 to 4
  • Loading branch information
ghutchis authored Sep 10, 2023
2 parents 09e4bd3 + b9b41e1 commit 22665df
Show file tree
Hide file tree
Showing 9 changed files with 18 additions and 18 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build_cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,19 +110,19 @@ jobs:
run: choco install ninja

- name: Checkout openchemistry
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: openchemistry/openchemistry
submodules: recursive

- name: Checkout avogadroapp
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: openchemistry/avogadroapp
path: avogadroapp

- name: Checkout avogadrolibs
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: avogadrolibs

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/build_m1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,24 +37,24 @@ jobs:
fi
- name: Checkout openchemistry
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: openchemistry/openchemistry
submodules: recursive

- name: Checkout avogadroapp
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: openchemistry/avogadroapp
path: avogadroapp

- name: Checkout avogadrolibs
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: avogadrolibs

- name: Checkout i18n
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: openchemistry/avogadro-i18n
path: avogadro-i18n
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
os: [ubuntu-20.04, macos-latest, windows-2019]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
# Grab the whole history so that setuptools-scm can see the tags and
# give it a correct version even on non-tag push.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/clang-format-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
- name: 'Install clang-format'
run: sudo apt-get -qq install clang-format-13

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

- name: 'Run clang-format-diff'
run: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/clang-tidy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,19 +41,19 @@ jobs:
version: ${{ env.QT_VERSION }}

- name: Checkout openchemistry
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: openchemistry/openchemistry
submodules: recursive

- name: Checkout avogadroapp
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: openchemistry/avogadroapp
path: avogadroapp

- name: Checkout avogadrolibs
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: avogadrolibs
fetch-depth: 2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codacy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
steps:
# Checkout the repository to the GitHub Actions runner
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

# Execute Codacy Analysis CLI and generate a SARIF output with the security issues identified during the analysis
- name: Run Codacy Analysis CLI
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,19 +44,19 @@ jobs:

steps:
- name: Checkout openchemistry
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: openchemistry/openchemistry
submodules: recursive

- name: Checkout avogadroapp
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: openchemistry/avogadroapp
path: avogadroapp

- name: Checkout avogadrolibs
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: avogadrolibs

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/misspell-fixer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
name: Spelling Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: misspell-fixer check for code and comments
uses: sobolevn/misspell-fixer-action@master
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-i18n-templates.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
name: Update translation templates
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install packages
run: |
Expand Down

0 comments on commit 22665df

Please sign in to comment.