Skip to content

Commit 005e7f6

Browse files
committed
Release 3.3.3 - See CHANGELOG.md
1 parent 7d7cb95 commit 005e7f6

File tree

5 files changed

+24
-11
lines changed

5 files changed

+24
-11
lines changed

.github/dependabot.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
version: 2
2+
updates:
3+
# Maintain dependencies for GitHub Actions
4+
- package-ecosystem: "github-actions"
5+
directory: "/"
6+
schedule:
7+
interval: "daily"

.github/workflows/main.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Checkout
16-
uses: actions/checkout@v2
16+
uses: actions/checkout@v3
1717

1818
- name: Prepare
1919
id: prep
@@ -63,17 +63,17 @@ jobs:
6363
echo ::set-output name=docker_image::${DOCKER_IMAGE}
6464
6565
- name: Set up QEMU
66-
uses: docker/setup-qemu-action@v1
66+
uses: docker/setup-qemu-action@v2
6767
with:
6868
platforms: all
6969

7070
- name: Set up Docker Buildx
7171
id: buildx
72-
uses: docker/setup-buildx-action@v1
72+
uses: docker/setup-buildx-action@v2
7373

7474
- name: Login to DockerHub
7575
if: github.event_name != 'pull_request'
76-
uses: docker/login-action@v1
76+
uses: docker/login-action@v2
7777
with:
7878
username: ${{ secrets.DOCKER_USERNAME }}
7979
password: ${{ secrets.DOCKER_PASSWORD }}
@@ -102,7 +102,7 @@ jobs:
102102
fi
103103
104104
- name: Build
105-
uses: docker/build-push-action@v2
105+
uses: docker/build-push-action@v3
106106
with:
107107
builder: ${{ steps.buildx.outputs.name }}
108108
context: .

.github/workflows/manual.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Checkout
16-
uses: actions/checkout@v2
16+
uses: actions/checkout@v3
1717

1818
- name: Prepare
1919
id: prep
@@ -63,17 +63,17 @@ jobs:
6363
echo ::set-output name=docker_image::${DOCKER_IMAGE}
6464
6565
- name: Set up QEMU
66-
uses: docker/setup-qemu-action@v1
66+
uses: docker/setup-qemu-action@v2
6767
with:
6868
platforms: all
6969

7070
- name: Set up Docker Buildx
7171
id: buildx
72-
uses: docker/setup-buildx-action@v1
72+
uses: docker/setup-buildx-action@v2
7373

7474
- name: Login to DockerHub
7575
if: github.event_name != 'pull_request'
76-
uses: docker/login-action@v1
76+
uses: docker/login-action@v2
7777
with:
7878
username: ${{ secrets.DOCKER_USERNAME }}
7979
password: ${{ secrets.DOCKER_PASSWORD }}
@@ -102,7 +102,7 @@ jobs:
102102
fi
103103
104104
- name: Build
105-
uses: docker/build-push-action@v2
105+
uses: docker/build-push-action@v3
106106
with:
107107
builder: ${{ steps.buildx.outputs.name }}
108108
context: .

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 3.3.3 2022-05-24 <dave at tiredofit dot ca>
2+
3+
### Added
4+
- Alpine 3.16 base
5+
6+
17
## 3.3.2 2022-05-02 <dave at tiredofit dot ca>
28

39
### Added

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM docker.io/tiredofit/alpine:3.15
1+
FROM docker.io/tiredofit/alpine:3.16
22
LABEL maintainer="Dave Conroy (github.com/tiredofit)"
33

44
### Set Environment Variables

0 commit comments

Comments
 (0)