Skip to content

Commit e84f312

Browse files
1 parent 3b4b302 commit e84f312

3 files changed

Lines changed: 5 additions & 6 deletions

File tree

.github/workflows/docker_build.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,14 @@ env:
2020

2121
jobs:
2222
build:
23-
2423
runs-on: ubuntu-latest
2524
permissions:
2625
contents: read
2726
packages: write
2827

2928
steps:
3029
- name: Checkout repository
31-
uses: actions/checkout@v4
30+
uses: actions/checkout@v5
3231

3332
- name: Log into registry ${{ env.REGISTRY }}
3433
if: github.event_name != 'pull_request'
@@ -48,7 +47,7 @@ jobs:
4847
type=raw,value=latest,enable=${{ github.event_name == 'schedule' || (github.event_name == 'push' && !contains(github.ref, 'refs/tags/')) }}
4948
5049
- name: Build and push Docker image
51-
uses: docker/build-push-action@v5
50+
uses: docker/build-push-action@v6
5251
with:
5352
context: ./docker
5453
push: ${{ github.event_name != 'pull_request' }}

.github/workflows/trivy_scan.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323

2424
steps:
2525
- name: Checkout repository
26-
uses: actions/checkout@v4
26+
uses: actions/checkout@v5
2727

2828
- name: Set lowercase image name
2929
run: echo "IMAGE_NAME=$(echo ${{ github.repository }} | tr '[:upper:]' '[:lower:]')" >> $GITHUB_ENV
@@ -39,7 +39,7 @@ jobs:
3939
echo "LATEST_TAG=$TAG_NAME" >> $GITHUB_ENV
4040
4141
- name: Log into registry ${{ env.REGISTRY }}
42-
uses: docker/login-action@v3
42+
uses: docker/login-action@v4
4343
with:
4444
registry: ${{ env.REGISTRY }}
4545
username: ${{ github.actor }}

docker/bind/named.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ include "/etc/bind/rndc.key";
2626
// also-notify { 192.168.1.11; };
2727
//};
2828

29-
// Slave zone The zone file is created automatically after the first successful transfer.
29+
// Slave zone The zone file is created automatically after the first successful transfer
3030
//zone "example.org" {
3131
// type slave;
3232
// masters { 192.168.1.10; };

0 commit comments

Comments
 (0)