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

Update all deps #205

Merged
merged 9 commits into from
Dec 17, 2023
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
12 changes: 12 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,18 @@ updates:
- lopopolo
labels:
- A-deps
- package-ecosystem: npm
directory: "/"
schedule:
interval: monthly
groups:
npm-deps:
patterns:
- "*"
assignees:
- lopopolo
labels:
- A-deps
- package-ecosystem: pip
directory: "/"
schedule:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/audit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4.1.0
uses: actions/checkout@v4.1.1

- name: Install Ruby toolchain
uses: ruby/setup-ruby@52b8784594ec115fd17094752708121dc5dabb47 # v1.154.0
uses: ruby/setup-ruby@8575951200e472d5f2d95c625da0c7bec8217c42 # v1.161.0
with:
ruby-version: ".ruby-version"
bundler-cache: true
Expand Down
29 changes: 16 additions & 13 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4.1.0
uses: actions/checkout@v4.1.1

- name: Setup Python
uses: actions/setup-python@v4.7.0
uses: actions/setup-python@v4.7.1

- name: Install Python dependencies
run: |
Expand All @@ -27,7 +27,7 @@ jobs:
venv/bin/pip install --require-hashes -r requirements.txt

- name: Clone Artichoke
uses: actions/checkout@v4.1.0
uses: actions/checkout@v4.1.1
with:
repository: artichoke/artichoke
path: artichoke
Expand Down Expand Up @@ -69,10 +69,10 @@ jobs:
runs-on: macos-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4.1.0
uses: actions/checkout@v4.1.1

- name: Setup Python
uses: actions/setup-python@v4.7.0
uses: actions/setup-python@v4.7.1

- name: Install Python dependencies
run: |
Expand All @@ -81,7 +81,7 @@ jobs:
venv/bin/pip install --require-hashes -r requirements.txt

- name: Clone Artichoke
uses: actions/checkout@v4.1.0
uses: actions/checkout@v4.1.1
with:
repository: artichoke/artichoke
path: artichoke
Expand Down Expand Up @@ -120,10 +120,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4.1.0
uses: actions/checkout@v4.1.1

- name: Setup Python
uses: actions/setup-python@v4.7.0
uses: actions/setup-python@v4.7.1

- name: Install Python dependencies
run: |
Expand All @@ -135,7 +135,7 @@ jobs:
run: venv/bin/black --check --diff --verbose .

- name: Run ruff
run: venv/bin/ruff --format=github .
run: venv/bin/ruff --output-format=github .

- name: Run mypy
run: venv/bin/mypy .
Expand All @@ -145,10 +145,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4.1.0
uses: actions/checkout@v4.1.1

- name: Install Ruby toolchain
uses: ruby/setup-ruby@52b8784594ec115fd17094752708121dc5dabb47 # v1.154.0
uses: ruby/setup-ruby@8575951200e472d5f2d95c625da0c7bec8217c42 # v1.161.0
with:
ruby-version: ".ruby-version"
bundler-cache: true
Expand All @@ -161,9 +161,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4.1.0
uses: actions/checkout@v4.1.1

- name: Format with prettier
- name: Install toolchain
run: npm ci

- name: Lint and check formatting with prettier
run: npx prettier --check '**/*'

- name: Lint YAML sources with yamllint
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/markdown-link-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4.1.0
uses: actions/checkout@v4.1.1

- name: Check for broken links in markdown files
uses: gaurav-nelson/github-action-markdown-link-check@d53a906aa6b22b8979d33bc86170567e619495ec # v1.0.15
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/nightly.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
echo "tag=${release_tag}" >> $GITHUB_OUTPUT

- name: Clone Artichoke
uses: actions/checkout@v4.1.0
uses: actions/checkout@v4.1.1
with:
repository: artichoke/artichoke
path: artichoke
Expand Down Expand Up @@ -124,7 +124,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4.1.0
uses: actions/checkout@v4.1.1

- name: Get release download URL
uses: actions/download-artifact@v3.0.2
Expand Down Expand Up @@ -157,7 +157,7 @@ jobs:
github_token: ${{ secrets.GITHUB_TOKEN }}

- name: Clone Artichoke
uses: actions/checkout@v4.1.0
uses: actions/checkout@v4.1.1
with:
repository: artichoke/artichoke
path: artichoke
Expand All @@ -169,7 +169,7 @@ jobs:
fetch-depth: 0

- name: Setup Python
uses: actions/setup-python@v4.7.0
uses: actions/setup-python@v4.7.1
with:
python-version: "3.11"

Expand All @@ -189,13 +189,13 @@ jobs:
print(f"version={toolchain}", file=f)

- name: Install Rust toolchain
uses: artichoke/setup-rust/build-and-test@v1.10.0
uses: artichoke/setup-rust/build-and-test@v1.11.0
with:
toolchain: ${{ steps.rust_toolchain.outputs.version }}
target: ${{ matrix.target }}

- name: Setup Python
uses: actions/setup-python@v4.7.0
uses: actions/setup-python@v4.7.1

# ```
# $ gpg --fingerprint --with-subkey-fingerprints codesign@artichokeruby.org
Expand Down Expand Up @@ -363,7 +363,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4.1.0
uses: actions/checkout@v4.1.1

- name: Get release download URL
uses: actions/download-artifact@v3.0.2
Expand All @@ -388,14 +388,14 @@ jobs:
echo "commit=${release_commit}" >> $GITHUB_OUTPUT

- name: Clone Artichoke
uses: actions/checkout@v4.1.0
uses: actions/checkout@v4.1.1
with:
repository: artichoke/artichoke
path: artichoke
ref: ${{ steps.release_info.outputs.commit }}

- name: Setup Python
uses: actions/setup-python@v4.7.0
uses: actions/setup-python@v4.7.1

# ```
# $ gpg --fingerprint --with-subkey-fingerprints codesign@artichokeruby.org
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/repo-labels.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
name: Synchronize repository labels
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.0
- uses: actions/checkout@v4.1.1

- name: Sync GitHub Issue Labels
uses: crazy-max/ghaction-github-labeler@de749cf181958193cb7debf1a9c5bb28922f3e1b # v5.0.0
Expand Down
Loading