From 87c4429055e732f3a970c5581b7c7b47bb5b767f Mon Sep 17 00:00:00 2001 From: Carlo Costino Date: Wed, 19 Feb 2025 16:42:34 -0500 Subject: [PATCH] Update GitHub Action References This changeset updates many of our GitHub Action references to point to the latest versions to ensure they are kept up-to-date. This helps address any improvements and security patches that have been made to them. Signed-off-by: Carlo Costino --- .github/workflows/adr-accepted.yml | 2 +- .github/workflows/daily_checks.yml | 4 ++-- .github/workflows/deploy-demo.yml | 6 +++--- .github/workflows/deploy-prod.yml | 6 +++--- .github/workflows/deploy.yml | 6 +++--- .github/workflows/terraform-demo.yml | 2 +- .github/workflows/terraform-production.yml | 2 +- .github/workflows/terraform-staging.yml | 2 +- 8 files changed, 15 insertions(+), 15 deletions(-) diff --git a/.github/workflows/adr-accepted.yml b/.github/workflows/adr-accepted.yml index c1f781e3f..7faedc902 100644 --- a/.github/workflows/adr-accepted.yml +++ b/.github/workflows/adr-accepted.yml @@ -53,7 +53,7 @@ jobs: echo "filename=$FILENAME" >> "$GITHUB_OUTPUT" - name: write the ADR - uses: DamianReeves/write-file-action@v1.2 + uses: DamianReeves/write-file-action@v1.3 with: path: ${{ steps.filename.outputs.filename }} write-mode: overwrite diff --git a/.github/workflows/daily_checks.yml b/.github/workflows/daily_checks.yml index edd1f7369..60a169ca7 100644 --- a/.github/workflows/daily_checks.yml +++ b/.github/workflows/daily_checks.yml @@ -27,11 +27,11 @@ jobs: - uses: ./.github/actions/setup-project - name: Create requirements.txt run: poetry export --without-hashes --format=requirements.txt > requirements.txt - - uses: pypa/gh-action-pip-audit@v1.0.6 + - uses: pypa/gh-action-pip-audit@v1.1.0 with: inputs: requirements.txt - name: Upload pip-audit artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: pip-audit-report path: /tmp/pip-audit-output.txt diff --git a/.github/workflows/deploy-demo.yml b/.github/workflows/deploy-demo.yml index d3855d2ef..48a47ceb3 100644 --- a/.github/workflows/deploy-demo.yml +++ b/.github/workflows/deploy-demo.yml @@ -18,7 +18,7 @@ jobs: - name: Check for changes to Terraform id: changed-terraform-files - uses: tj-actions/changed-files@v44 + uses: tj-actions/changed-files@v45 with: files: | terraform/demo/** @@ -78,7 +78,7 @@ jobs: - name: Check for changes to templates.json id: changed-templates - uses: tj-actions/changed-files@v44 + uses: tj-actions/changed-files@v45 with: files: | app/config_files/templates.json @@ -88,7 +88,7 @@ jobs: - name: Check for changes to egress config id: changed-egress-config - uses: tj-actions/changed-files@v44 + uses: tj-actions/changed-files@v45 with: files: | deploy-config/egress_proxy/notify-api-demo.*.acl diff --git a/.github/workflows/deploy-prod.yml b/.github/workflows/deploy-prod.yml index bc4eaae74..6e0a2d583 100644 --- a/.github/workflows/deploy-prod.yml +++ b/.github/workflows/deploy-prod.yml @@ -22,7 +22,7 @@ jobs: - name: Check for changes to Terraform id: changed-terraform-files - uses: tj-actions/changed-files@v44 + uses: tj-actions/changed-files@v45 with: files: | terraform/production/** @@ -82,7 +82,7 @@ jobs: - name: Check for changes to templates.json id: changed-templates - uses: tj-actions/changed-files@v44 + uses: tj-actions/changed-files@v45 with: files: | app/config_files/templates.json @@ -92,7 +92,7 @@ jobs: - name: Check for changes to egress config id: changed-egress-config - uses: tj-actions/changed-files@v44 + uses: tj-actions/changed-files@v45 with: files: | deploy-config/egress_proxy/notify-api-production.*.acl diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index d8d0da952..897e359e2 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -24,7 +24,7 @@ jobs: - name: Check for changes to Terraform id: changed-terraform-files - uses: tj-actions/changed-files@v44 + uses: tj-actions/changed-files@v45 with: files: | terraform/staging/** @@ -84,7 +84,7 @@ jobs: - name: Check for changes to templates.json id: changed-templates - uses: tj-actions/changed-files@v44 + uses: tj-actions/changed-files@v45 with: files: | app/config_files/templates.json @@ -94,7 +94,7 @@ jobs: - name: Check for changes to egress config id: changed-egress-config - uses: tj-actions/changed-files@v44 + uses: tj-actions/changed-files@v45 with: files: | deploy-config/egress_proxy/notify-api-staging.*.acl diff --git a/.github/workflows/terraform-demo.yml b/.github/workflows/terraform-demo.yml index 765f9e53b..a3dced5fc 100644 --- a/.github/workflows/terraform-demo.yml +++ b/.github/workflows/terraform-demo.yml @@ -51,7 +51,7 @@ jobs: # inspiration: https://learn.hashicorp.com/tutorials/terraform/github-actions#review-actions-workflow - name: Update PR - uses: actions/github-script@v6 + uses: actions/github-script@v7 # we would like to update the PR even when a prior step failed if: ${{ always() }} with: diff --git a/.github/workflows/terraform-production.yml b/.github/workflows/terraform-production.yml index 1988c5d95..2f9a5960f 100644 --- a/.github/workflows/terraform-production.yml +++ b/.github/workflows/terraform-production.yml @@ -51,7 +51,7 @@ jobs: # inspiration: https://learn.hashicorp.com/tutorials/terraform/github-actions#review-actions-workflow - name: Update PR - uses: actions/github-script@v6 + uses: actions/github-script@v7 # we would like to update the PR even when a prior step failed if: ${{ always() }} with: diff --git a/.github/workflows/terraform-staging.yml b/.github/workflows/terraform-staging.yml index 1f86ee033..f70efdff6 100644 --- a/.github/workflows/terraform-staging.yml +++ b/.github/workflows/terraform-staging.yml @@ -51,7 +51,7 @@ jobs: # inspiration: https://learn.hashicorp.com/tutorials/terraform/github-actions#review-actions-workflow - name: Update PR - uses: actions/github-script@v6 + uses: actions/github-script@v7 # we would like to update the PR even when a prior step failed if: ${{ always() }} with: