File tree Expand file tree Collapse file tree 5 files changed +14
-8
lines changed Expand file tree Collapse file tree 5 files changed +14
-8
lines changed Original file line number Diff line number Diff line change 51
51
repository_name : " ${{ github.repository.name }}"
52
52
repository_desc : " ${{ github.repository.description }}"
53
53
54
+ - name : Check repository info
55
+ run : |
56
+ echo "::notice title=Repository Name::${{ env.REPO_NAME }}"
57
+ echo "::notice title=Repository Description::${{ env.REPO_DESCRIPTION }}"
58
+ shell : bash
59
+
54
60
- name : Build and push Docker image
55
61
uses : docker/build-push-action@v6
56
62
with :
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ FROM ubuntu:22.04
3
3
SHELL ["/bin/bash" , "-c" ]
4
4
5
5
ARG RUNNER_VERSION
6
- ENV RUNNER_VERSION="${RUNNER_VERSION:-2.322 .0}"
6
+ ENV RUNNER_VERSION="${RUNNER_VERSION:-2.328 .0}"
7
7
ENV DEBIAN_FRONTEND=noninteractive
8
8
ENV HOME="/home/docker"
9
9
ENV RELEASE_URL="https://github.com/actions/runner/releases"
@@ -27,16 +27,16 @@ RUN apt-get install -y --no-install-recommends \
27
27
build-essential \
28
28
libssl-dev \
29
29
libffi-dev \
30
- python3.10 \
31
- python3.10 -venv \
32
- python3.10 -dev \
30
+ python3.11 \
31
+ python3.11 -venv \
32
+ python3.11 -dev \
33
33
python3-pip \
34
34
nodejs \
35
35
npm \
36
36
golang-go
37
37
38
38
# Create a symbolic link for python pointing to python3.10
39
- RUN ln -s /usr/bin/python3.10 /usr/bin/python
39
+ RUN ln -s /usr/bin/python3.11 /usr/bin/python
40
40
41
41
# https://github.com/rust-lang/rustup/issues/297#issuecomment-444818896
42
42
RUN curl https://sh.rustup.rs -sSf | sh -s -- -y
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ services:
6
6
args :
7
7
- PLATFORM=linux/amd64
8
8
image : github-runner-linux
9
- restart : no
9
+ restart : unless-stopped
10
10
platform : linux/amd64
11
11
# Load environment variables from a file
12
12
# env_file: '.env'
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ services:
6
6
args :
7
7
- PLATFORM=linux/arm64
8
8
image : github-runner-linux
9
- restart : no
9
+ restart : unless-stopped
10
10
platform : linux/arm64
11
11
# Load environment variables from a file
12
12
# env_file: '.env'
Original file line number Diff line number Diff line change 2
2
services :
3
3
runner :
4
4
image : thevickypedia/github-runner-linux
5
- restart : always
5
+ restart : unless-stopped
6
6
# Load environment variables from a file
7
7
# env_file: '.env'
8
8
# Env vars defined under environment will override those from the env_file
You can’t perform that action at this time.
0 commit comments