From e3cb5a69237af74f17f0170c80231a21792deea4 Mon Sep 17 00:00:00 2001 From: "Matthew C. Morgan" Date: Wed, 23 Oct 2024 17:45:41 -0400 Subject: [PATCH 1/2] update packages --- .pre-commit-config.yaml | 6 +++--- README.md | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 6bfca7a..bdad379 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,6 +1,6 @@ repos: - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v4.6.0 + rev: v5.0.0 hooks: # Git style - id: check-added-large-files @@ -38,7 +38,7 @@ repos: # Terraform Hooks - repo: https://github.com/antonbabenko/pre-commit-terraform - rev: v1.92.1 # Get the latest from: https://github.com/antonbabenko/pre-commit-terraform/releases + rev: v1.96.1 # Get the latest from: https://github.com/antonbabenko/pre-commit-terraform/releases hooks: - id: terraform_fmt args: @@ -94,6 +94,6 @@ repos: # - --hook-config=--parallelism-ci-cpu-cores=2 - repo: https://github.com/ljnsn/cz-conventional-gitmoji - rev: v0.3.2 + rev: v0.6.1 hooks: - id: conventional-gitmoji diff --git a/README.md b/README.md index 05c2ec3..9dec3d3 100644 --- a/README.md +++ b/README.md @@ -52,16 +52,16 @@ sys 0m2.015s | Name | Version | |------|---------| -| [aws](#provider\_aws) | 5.61.0 | -| [http](#provider\_http) | 3.4.4 | +| [aws](#provider\_aws) | 5.72.1 | +| [http](#provider\_http) | 3.4.5 | | [kubectl](#provider\_kubectl) | 1.14.0 | -| [kubernetes](#provider\_kubernetes) | 2.31.0 | +| [kubernetes](#provider\_kubernetes) | 2.33.0 | ## Modules | Name | Source | Version | |------|--------|---------| -| [efs](#module\_efs) | git@github.e.it.census.gov:terraform-modules/aws-efs.git | n/a | +| [efs](#module\_efs) | git@github.e.it.census.gov:terraform-modules/aws-efs.git | master | | [images](#module\_images) | git@github.e.it.census.gov:terraform-modules/aws-ecr-copy-images.git/ | tf-upgrade | ## Resources From 217aa02b56151fa68e80c35a6aa98d707a0720f4 Mon Sep 17 00:00:00 2001 From: "Matthew C. Morgan" Date: Wed, 23 Oct 2024 19:22:50 -0400 Subject: [PATCH 2/2] add action def for release --- .github/release.yml | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 .github/release.yml diff --git a/.github/release.yml b/.github/release.yml new file mode 100644 index 0000000..68681af --- /dev/null +++ b/.github/release.yml @@ -0,0 +1,39 @@ +# CSVD/release-tag +name: Release Tag + +# Controls when the workflow will run +on: + push: + branches: + - main + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +permissions: write-all +# A workflow run is made up of one or more jobs that can run sequentially or in parallel +jobs: + # This workflow contains a single job called "build" + Tag: + # The type of runner that the job will run on + runs-on: ["229685449397"] + + steps: + - uses: CSVD/gh-actions-checkout@v4 + id: checkout + with: + persist-credentials: false + + - name: Setup GITHUB Credentials + id: github_credentials + uses: CSVD/gh-auth@main + with: + github_app_pem_file: ${{ secrets.GH_APP_PEM_FILE }} + github_app_installation_id: ${{ vars.GH_APP_INSTALLATION_ID }} + github_base_url: "${{ github.server_url }}/" + + - name: Tag Release + uses: CSVD/release-tag@main + with: + patch: true + env: + GITHUB_TOKEN: ${{ steps.github_credentials.outputs.github_token }}