Skip to content

Commit f47fa19

Browse files
authored
Merge branch 'master' into master
2 parents c7f6743 + c1a9afc commit f47fa19

File tree

2 files changed

+8
-10
lines changed

2 files changed

+8
-10
lines changed

.github/workflows/build.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
branches:
66
- master
77
tags:
8-
- 'v*'
8+
- '*'
99
pull_request:
1010
branches:
1111
- master
@@ -21,7 +21,7 @@ jobs:
2121

2222
steps:
2323
- name: Checkout code
24-
uses: actions/checkout@v2
24+
uses: actions/checkout@v3
2525

2626
- name: Docker meta
2727
id: meta
@@ -32,39 +32,39 @@ jobs:
3232
quay.io/sameersbn/postgresql
3333
ghcr.io/sameersbn/postgresql
3434
tags: |
35-
type=match,pattern=\d
35+
type=match,pattern=\d+
3636
type=match,pattern=(.*)
3737
latest
3838
3939
- name: Set up Docker Buildx
4040
id: buildx
41-
uses: docker/setup-buildx-action@v1
41+
uses: docker/setup-buildx-action@v2
4242

4343
- name: Login to DockerHub
4444
if: github.event_name != 'pull_request'
45-
uses: docker/login-action@v1
45+
uses: docker/login-action@v2
4646
with:
4747
username: ${{ secrets.DOCKERHUB_USERNAME }}
4848
password: ${{ secrets.DOCKERHUB_TOKEN }}
4949

5050
- name: Login to Github Packages
5151
if: github.event_name != 'pull_request'
52-
uses: docker/login-action@v1
52+
uses: docker/login-action@v2
5353
with:
5454
registry: ghcr.io
5555
username: ${{ github.actor }}
5656
password: ${{ secrets.GITHUB_TOKEN }}
5757

5858
- name: Login to Quay.io
5959
if: github.event_name != 'pull_request'
60-
uses: docker/login-action@v1
60+
uses: docker/login-action@v2
6161
with:
6262
registry: quay.io
6363
username: ${{ secrets.QUAY_USERNAME }}
6464
password: ${{ secrets.QUAY_TOKEN }}
6565

6666
- name: Build image and push to container registries
67-
uses: docker/build-push-action@v2
67+
uses: docker/build-push-action@v4
6868
with:
6969
context: .
7070
push: ${{ github.event_name != 'pull_request' }}

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
[![Circle CI](https://circleci.com/gh/sameersbn/docker-postgresql.svg?style=shield)](https://circleci.com/gh/sameersbn/docker-postgresql) [![Docker Repository on Quay.io](https://quay.io/repository/sameersbn/postgresql/status "Docker Repository on Quay.io")](https://quay.io/repository/sameersbn/postgresql) [![](https://badge.imagelayers.io/sameersbn/postgresql.svg)](https://imagelayers.io/?images=sameersbn/postgresql:latest 'Get your own badge on imagelayers.io')
2-
31
# sameersbn/postgresql:15-20230628
42

53
- [Introduction](#introduction)

0 commit comments

Comments
 (0)