mirror of
https://github.com/openbabel/openbabel.git
synced 2025-02-25 18:55:23 -06:00
Merge branch 'master' into dependabot/github_actions/actions/setup-python-5
This commit is contained in:
commit
1c0a2bb22a
4
.github/workflows/build_bindings.yml
vendored
4
.github/workflows/build_bindings.yml
vendored
@ -21,7 +21,7 @@ jobs:
|
||||
}
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Install Dependencies (Linux)
|
||||
if: runner.os == 'Linux'
|
||||
@ -46,7 +46,7 @@ jobs:
|
||||
working-directory: ${{ runner.workspace }}
|
||||
|
||||
- name: Upload
|
||||
uses: actions/upload-artifact@v2-preview
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
path: ${{ runner.workspace }}/openbabel-latest.tar.bz2
|
||||
name: openbabel.tar.bz2
|
||||
|
4
.github/workflows/build_cmake.yml
vendored
4
.github/workflows/build_cmake.yml
vendored
@ -41,7 +41,7 @@ jobs:
|
||||
- name: Check variables
|
||||
run: echo "${{runner.os}} ${{matrix.config.os}} ${{matrix.config.cc}}"
|
||||
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Install MSVC Command Prompt
|
||||
if: runner.os == 'Windows'
|
||||
@ -103,7 +103,7 @@ jobs:
|
||||
|
||||
- name: Upload
|
||||
if: matrix.config.artifact != 0
|
||||
uses: actions/upload-artifact@v1
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
path: ${{ runner.workspace }}/instdir/../${{ matrix.config.artifact }}
|
||||
name: ${{ matrix.config.artifact }}
|
||||
|
2
.github/workflows/cifuzz.yml
vendored
2
.github/workflows/cifuzz.yml
vendored
@ -19,7 +19,7 @@ jobs:
|
||||
dry-run: false
|
||||
language: c++
|
||||
- name: Upload Crash
|
||||
uses: actions/upload-artifact@v3
|
||||
uses: actions/upload-artifact@v4
|
||||
if: failure() && steps.build.outcome == 'success'
|
||||
with:
|
||||
name: artifacts
|
||||
|
8
.github/workflows/codeql.yml
vendored
8
.github/workflows/codeql.yml
vendored
@ -24,18 +24,18 @@ jobs:
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Initialize CodeQL
|
||||
uses: github/codeql-action/init@v2
|
||||
uses: github/codeql-action/init@v3
|
||||
with:
|
||||
languages: ${{ matrix.language }}
|
||||
queries: +security-and-quality
|
||||
|
||||
- name: Autobuild
|
||||
uses: github/codeql-action/autobuild@v2
|
||||
uses: github/codeql-action/autobuild@v3
|
||||
|
||||
- name: Perform CodeQL Analysis
|
||||
uses: github/codeql-action/analyze@v2
|
||||
uses: github/codeql-action/analyze@v3
|
||||
with:
|
||||
category: "/language:${{ matrix.language }}"
|
||||
|
2
.github/workflows/lint_python.yml
vendored
2
.github/workflows/lint_python.yml
vendored
@ -4,7 +4,7 @@ jobs:
|
||||
lint_python:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/setup-python@v5
|
||||
with:
|
||||
python-version: '3.10'
|
||||
|
4
.github/workflows/misspell-fixer.yml
vendored
4
.github/workflows/misspell-fixer.yml
vendored
@ -6,11 +6,11 @@ jobs:
|
||||
name: Spelling Check
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/checkout@v4
|
||||
- name: misspell-fixer check for code and comments
|
||||
uses: sobolevn/misspell-fixer-action@master
|
||||
with:
|
||||
options: '-rsvn include/openbabel src tools'
|
||||
- uses: peter-evans/create-pull-request@v3.8.0
|
||||
- uses: peter-evans/create-pull-request@v7.0.5
|
||||
with:
|
||||
token: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
Loading…
Reference in New Issue
Block a user