Skip to content

Commit

Permalink
GitHub actions fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
gtopper committed Jan 4, 2024
1 parent 6718965 commit 1eb2c09
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 30 deletions.
11 changes: 1 addition & 10 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
name: Lint & test Go code
runs-on: [ self-hosted, Linux ]
container:
image: python:3.9.18
image: golang:1.19

steps:
- name: Dump github context
Expand All @@ -41,10 +41,6 @@ jobs:
- name: Dump github ref
run: echo "$GITHUB_REF"

- uses: actions/setup-go@v3
with:
go-version: 1.19.5

- uses: actions/checkout@v3
with:
ref: refs/pull/${{ github.event.number }}/merge
Expand Down Expand Up @@ -83,11 +79,6 @@ jobs:
with:
ref: refs/pull/${{ github.event.number }}/merge

- name: Set up python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: 3.7

- name: Install dependencies
run: make python-deps

Expand Down
11 changes: 1 addition & 10 deletions .github/workflows/push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
name: Lint & test Go code
runs-on: [ self-hosted, Linux ]
container:
image: python:3.9.18
image: golang:1.19

steps:
- name: Dump github context
Expand All @@ -41,10 +41,6 @@ jobs:
- name: Dump github ref
run: echo "$GITHUB_REF"

- uses: actions/setup-go@v3
with:
go-version: "^1.19.5"

- uses: actions/checkout@v3

# This gets killed, probably due to memory usage
Expand Down Expand Up @@ -85,11 +81,6 @@ jobs:

- uses: actions/checkout@v3

- name: Set up python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: 3.7

- name: Install dependencies
run: make python-deps

Expand Down
11 changes: 1 addition & 10 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
name: Lint & test Go code
runs-on: [ self-hosted, Linux ]
container:
image: python:3.9.18
image: golang:1.19

steps:
- name: Dump github context
Expand All @@ -40,10 +40,6 @@ jobs:
- name: Dump github ref
run: echo "$GITHUB_REF"

- uses: actions/setup-go@v3
with:
go-version: "^1.19.5"

- uses: actions/checkout@v3

# This gets killed, probably due to memory usage
Expand Down Expand Up @@ -84,11 +80,6 @@ jobs:

- uses: actions/checkout@v3

- name: Set up python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: 3.7

- name: Install dependencies
run: make python-deps

Expand Down

0 comments on commit 1eb2c09

Please sign in to comment.