Skip to content

Commit

Permalink
Merge pull request #100 from victorskl/bump-deps-20241005
Browse files Browse the repository at this point in the history
Bumped dev toolchain dependencies
  • Loading branch information
victorskl authored Oct 5, 2024
2 parents d50d133 + dfa317c commit 27d6ffd
Show file tree
Hide file tree
Showing 7 changed files with 49 additions and 42 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/prbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ on:
- main

# Actions Used:
# https://github.com/actions/setup-python#usage
# https://github.com/actions/checkout
# https://github.com/actions/setup-python
# https://github.com/marketplace/actions/codecov
# https://github.com/marketplace/actions/code-climate-coverage-action
# https://docs.codeclimate.com/docs/github-actions-test-coverage
Expand All @@ -26,7 +27,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11' ]
python-version: [ '3.9', '3.10', '3.11', '3.12' ]

steps:
- name: Checkout code
Expand All @@ -35,14 +36,14 @@ jobs:
fetch-depth: 0

- name: TruffleHog OSS
uses: trufflesecurity/trufflehog@v3.62.1
uses: trufflesecurity/trufflehog@v3.82.6
with:
path: ./
base: ${{ github.event.repository.default_branch }}
head: HEAD

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

Expand All @@ -64,14 +65,14 @@ jobs:
xvfb-run pytest --cov-report xml --cov=yawsso tests/
- name: Publish coverage to to Codecov
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
with:
file: ./coverage.xml
flags: unittests
name: yawsso

- name: Publish coverage to CodeClimate
uses: paambaati/codeclimate-action@v5.0.0
uses: paambaati/codeclimate-action@v9.0.0
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
with:
Expand Down
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
repos:

- repo: https://github.com/Yelp/detect-secrets
rev: v1.2.0
rev: v1.5.0
hooks:
- id: detect-secrets
name: detect secrets
args: [ '--baseline', '.secrets.baseline' ]
exclude: ^(yarn.lock|.yarn/|pnpm-lock.yaml)

- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.1.0
rev: v4.6.0
hooks:
- id: check-added-large-files
- id: check-json
Expand Down
34 changes: 17 additions & 17 deletions .terraform.lock.hcl

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions main.tf
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
terraform {
required_version = "~> 1.5.7"
required_version = "~> 1.9.7"

required_providers {
aws = {
source = "hashicorp/aws"
version = "5.25.0"
version = "5.70.0"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"dependencies": {
"aws-cdk": "^2.131.0"
"aws-cdk": "^2.161.1"
}
}
32 changes: 19 additions & 13 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py{37,38,39,310,311}
envlist = py{37,38,39,310,311,312}
skip_missing_interpreters=True

[testenv]
Expand Down

0 comments on commit 27d6ffd

Please sign in to comment.