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 #11

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
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.1.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.0.5
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.3.0

- name: Login to DockerHub
uses: docker/login-action@v3
uses: docker/login-action@v3.2.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.0.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.22.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.3.0

- name: Login to DockerHub
uses: docker/login-action@v3
uses: docker/login-action@v3.2.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.0.0
with:
context: ./
file: ./Dockerfile
Expand Down