Skip to content

Commit 345c093

Browse files
Merge branch 'main' into add-docker-compose
2 parents 98f9c70 + 3813fbe commit 345c093

File tree

5 files changed

+14
-13
lines changed

5 files changed

+14
-13
lines changed

.github/workflows/release.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,12 @@ on:
66
push:
77
branches:
88
- main
9-
paths-ignore:
10-
- 'CODEOWNERS'
11-
- '**.md'
12-
- '.**'
9+
paths:
10+
- 'Dockerfile'
11+
- 'github-runner-entrypoint.sh'
12+
- '.dockerignore'
13+
- '.github/workflows/release.yml'
14+
- 'release.json'
1315

1416
env:
1517
REGISTRY: ghcr.io
@@ -59,8 +61,8 @@ jobs:
5961
password: ${{ secrets.GITHUB_TOKEN }}
6062

6163
- name: Docker meta
62-
uses: docker/metadata-action@dbef88086f6cef02e264edb7dbf63250c17cef6c # v5.5.0
6364
if: steps.release.outputs.new_release_published == 'true'
65+
uses: docker/metadata-action@dbef88086f6cef02e264edb7dbf63250c17cef6c # v5.5.0
6466
id: meta
6567
with:
6668
images: |
@@ -76,8 +78,8 @@ jobs:
7678
org.opencontainers.image.source=https://github.com/${{ github.repository }}
7779

7880
- name: Build and push Docker image
79-
id: docker_build_push
8081
if: steps.release.outputs.new_release_published == 'true'
82+
id: docker_build_push
8183
uses: docker/build-push-action@4a13e500e55cf31b7a5d59a38ab2040ab0f42f56 # v5.1.0
8284
with:
8385
context: .

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## v2.326.0
2+
- Docker Image: `docker pull ghcr.io/actions/runner:v2.326.0@sha256:9c3383600872325f21951a0a1a8ae640361ff5e1abdf1f2900de8ba1cfd915e9`
3+
14
## v2.325.0
25
- Docker Image: `docker pull ghcr.io/actions/runner:v2.325.0@sha256:deb54a88ead0a86beedec6ac949e8b28f77478835b9c6434ccc237390a6e3e4f`
36

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ghcr.io/actions/actions-runner:2.325.0@sha256:deb54a88ead0a86beedec6ac949e8b28f77478835b9c6434ccc237390a6e3e4f AS base
1+
FROM ghcr.io/actions/actions-runner:2.326.0@sha256:9c3383600872325f21951a0a1a8ae640361ff5e1abdf1f2900de8ba1cfd915e9 AS base
22

33
USER root
44

github-runner-entrypoint.sh

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,10 +64,6 @@ if [ -n "$GITHUB_REPOSITORY" ] && [ -n "$GITHUB_TOKEN" ]; then
6464

6565
else
6666

67-
#
68-
# JOB Container app configuration
69-
#
70-
7167
# Retrieve a short lived runner registration token using the PAT
7268
REGISTRATION_TOKEN="$(curl -X POST -fsSL \
7369
-H 'Accept: application/vnd.github.v3+json' \

release.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"current_tag": "v2.325.0",
3-
"current_sha": "71ed7cd46223bd5d61633445946813012b502d54"
2+
"current_tag": "v2.326.0",
3+
"current_sha": "de0233c4d64676d8ebd16074221ae1e0e0bf2a13"
44
}

0 commit comments

Comments
 (0)