Skip to content

Commit 25f2874

Browse files
authored
Yaml fix #101 (#104)
1 parent bc00a6b commit 25f2874

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/build_and_publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,18 +21,18 @@ jobs:
2121

2222
steps:
2323
- name: Checkout repository
24-
uses: actions/checkout@master
24+
uses: actions/checkout@v4
2525

2626
- name: Log in to the Container registry
27-
uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9
27+
uses: docker/login-action@v2
2828
with:
2929
registry: ${{ env.REGISTRY }}
3030
username: ${{ github.actor }}
3131
password: ${{ secrets.GITHUB_TOKEN }}
3232

3333
- name: Extract metadata (tags, labels) for Docker
3434
id: meta
35-
uses: docker/metadata-action@98669ae865ea3cffbcbaa878cf57c20bbf1c6c38
35+
uses: docker/metadata-action@v4
3636
with:
3737
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
3838
tags: |
@@ -41,7 +41,7 @@ jobs:
4141
type=raw,value=test,enable=true
4242
4343
- name: Build and push Docker image
44-
uses: docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc
44+
uses: docker/build-push-action@v4
4545
with:
4646
context: .
4747
push: true

.github/workflows/checks.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout
13-
uses: actions/checkout@master
13+
uses: actions/checkout@v4
1414
- name: Set up docker
1515
uses: docker-practice/actions-setup-docker@master
1616
- name: Run postgres
@@ -51,7 +51,7 @@ jobs:
5151
linting:
5252
runs-on: ubuntu-latest
5353
steps:
54-
- uses: actions/checkout@v2
54+
- uses: actions/checkout@v4
5555
- uses: actions/setup-python@v2
5656
with:
5757
python-version: 3.11

0 commit comments

Comments
 (0)