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 GitHub Action Versions #23

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion .github/workflows/actions-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v4.1.7
with:
# [Required] Access token with `workflow` scope.
token: ${{ secrets.WORKFLOW_TOKEN }}
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/dbmisvc-app-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,15 +52,15 @@ jobs:
released: ${{ steps.semantic.outputs.new_release_published }}
channel: ${{ steps.semantic.outputs.new_release_channel }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v4.1.7
- name: Set up Python 3.11
uses: actions/setup-python@v5
uses: actions/setup-python@v5.2.0
with:
python-version: 3.11
- name: Install Python packages
run: |
python -m pip install --upgrade pip
- uses: cycjimmy/semantic-release-action@v4
- uses: cycjimmy/semantic-release-action@v4.1.0
id: semantic
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
Expand Down Expand Up @@ -89,7 +89,7 @@ jobs:
git checkout ${{ needs.metadata.outputs.branch }}
- name: Configure AWS credentials
if: steps.semantic.outputs.new_release_published == 'true' || inputs.force
uses: aws-actions/configure-aws-credentials@v4
uses: aws-actions/configure-aws-credentials@v4.0.2
with:
aws-region: ${{ env.AWS_REGION }}
role-to-assume: ${{ inputs.role }}
Expand All @@ -101,7 +101,7 @@ jobs:
run: git rev-parse HEAD > COMMIT
- name: Zip artifacts
if: steps.semantic.outputs.new_release_published == 'true' || inputs.force
uses: thedoctor0/zip-release@master
uses: thedoctor0/zip-release@0.7.6
with:
type: "zip"
filename: "${{ inputs.filename }}"
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/requirements-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v4.1.7
with:
ref: development

- name: Setup python
uses: actions/setup-python@v5
uses: actions/setup-python@v5.2.0
with:
python-version: '3.11'

Expand All @@ -47,7 +47,7 @@ jobs:
--output-file requirements.txt requirements.in

- name: Create Pull Request
uses: peter-evans/create-pull-request@v6
uses: peter-evans/create-pull-request@v6.1.0
with:
token: ${{ secrets.GH_TOKEN }}
base: development
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v4.1.7

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
uses: docker/setup-buildx-action@v3.6.1

- name: Login to DockerHub
uses: docker/login-action@v3
uses: docker/login-action@v3.3.0
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_PASSWORD }}
Expand All @@ -44,7 +44,7 @@ jobs:

- name: Build the image
id: buildimage
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6.7.0
with:
load: true
context: ./
Expand All @@ -53,7 +53,7 @@ jobs:
tags: ${{ steps.setimagename.outputs.imagename }}

- name: Run Trivy vulnerability scanner
uses: aquasecurity/trivy-action@master
uses: aquasecurity/trivy-action@0.24.0
with:
image-ref: '${{ steps.setimagename.outputs.imagename }}'
format: 'table'
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test-image-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v4.1.7

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
uses: docker/setup-buildx-action@v3.6.1

- name: Login to DockerHub
uses: docker/login-action@v3
uses: docker/login-action@v3.3.0
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_PASSWORD }}
Expand All @@ -44,7 +44,7 @@ jobs:

- name: Build the image
id: buildimage
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6.7.0
with:
context: ./
file: ./Dockerfile
Expand Down