Bump github.com/aws/aws-sdk-go-v2/service/ec2 from 1.244.0 to 1.245.0 in /instance-scheduler in the gomod-dependencies group #6315
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Format Code: ensure code formatting guidelines are met" | |
on: | |
pull_request: | |
types: [opened, edited, reopened, synchronize] | |
permissions: read-all | |
jobs: | |
format-code: | |
permissions: | |
contents: write | |
security-events: write # needed for SARIF upload | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
- name: Run Format Code Action | |
uses: ministryofjustice/modernisation-platform-github-actions/format-code@ac5b118d8d519a521d3a526b564f49fa294dce2c # v3.4.1 | |
with: | |
ignore_files: "README.md" | |
- name: Run Signed Commit Action | |
uses: ministryofjustice/modernisation-platform-github-actions/signed-commit@ac5b118d8d519a521d3a526b564f49fa294dce2c # v3.4.1 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
pr_title: "GitHub Actions Code Formatter workflow" | |
pr_body: "This pull request includes updates from the GitHub Actions Code Formatter workflow. Please review the changes and merge if everything looks good." |