Skip to content

Commit b598482

Browse files
Merge pull request #979 from monarch-initiative/update-actions
Bump action versions
2 parents 70e4398 + 7fa9c05 commit b598482

File tree

5 files changed

+14
-14
lines changed

5 files changed

+14
-14
lines changed

.github/workflows/build-and-deploy-images.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
echo "IMAGE_TAG=${IMAGE_TAG//v}" >> $GITHUB_OUTPUT
2929
3030
- name: Build and Push Image
31-
uses: RafikFarhad/push-to-gcr-github-action@v5-beta
31+
uses: RafikFarhad/push-to-gcr-github-action@v5-rc1
3232
with:
3333
gcloud_service_key: ${{ secrets.JSON_GCLOUD_SERVICE_ACCOUNT_JSON }}
3434
registry: us-central1-docker.pkg.dev
@@ -51,7 +51,7 @@ jobs:
5151
fetch-depth: 0 # to get all tags
5252

5353
- name: Set up Bun
54-
uses: oven-sh/setup-bun@v1
54+
uses: oven-sh/setup-bun@v2
5555

5656
- name: Install packages
5757
run: bun install
@@ -72,7 +72,7 @@ jobs:
7272
# ./services/nginx/config/, copied to /etc/nginx/conf.d/ in the image
7373

7474
- name: Build and Push Image
75-
uses: RafikFarhad/push-to-gcr-github-action@v5-beta
75+
uses: RafikFarhad/push-to-gcr-github-action@v5-rc1
7676
with:
7777
gcloud_service_key: ${{ secrets.JSON_GCLOUD_SERVICE_ACCOUNT_JSON }}
7878
registry: us-central1-docker.pkg.dev

.github/workflows/build-semsim-image.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
fetch-depth: 0 # to get all tags
1717

1818
- name: Build and Push Image
19-
uses: RafikFarhad/push-to-gcr-github-action@v5-beta
19+
uses: RafikFarhad/push-to-gcr-github-action@v5-rc1
2020
with:
2121
gcloud_service_key: ${{ secrets.JSON_GCLOUD_SERVICE_ACCOUNT_JSON }} # not needed if you use google-github-actions/auth
2222
registry: us-central1-docker.pkg.dev

.github/workflows/codecov_main.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
steps:
1717
- uses: actions/checkout@v4
1818
- name: Set up Python ${{ matrix.python-version }}
19-
uses: actions/setup-python@v4
19+
uses: actions/setup-python@v5
2020
with:
2121
python-version: ${{ matrix.python-version }}
2222

@@ -53,10 +53,10 @@ jobs:
5353
#----------------------------------------------
5454
- name: Upload coverage report
5555
if: github.repository == 'monarch-initiative/monarch-app'
56-
uses: codecov/codecov-action@v4
56+
uses: codecov/codecov-action@v5
5757
with:
5858
name: codecov-results-${{ matrix.python-version }}
5959
token: ${{ secrets.CODECOV_TOKEN }}
60-
file: coverage.xml
60+
files: coverage.xml
6161
fail_ci_if_error: true
6262

.github/workflows/test-backend.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,10 +62,10 @@ jobs:
6262
#----------------------------------------------
6363
- name: Upload coverage report
6464
if: github.repository == 'monarch-initiative/monarch-app'
65-
uses: codecov/codecov-action@v4
65+
uses: codecov/codecov-action@v5
6666
with:
6767
name: codecov-results-${{ matrix.python-version }}
6868
token: ${{ secrets.CODECOV_TOKEN }}
69-
file: coverage.xml
69+
files: coverage.xml
7070
fail_ci_if_error: true
7171

.github/workflows/test-frontend.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
uses: actions/checkout@v4
1616

1717
- name: Set up Bun
18-
uses: oven-sh/setup-bun@v1
18+
uses: oven-sh/setup-bun@v2
1919

2020
- name: Install packages
2121
run: bun install
@@ -34,7 +34,7 @@ jobs:
3434
uses: actions/checkout@v4
3535

3636
- name: Set up Bun
37-
uses: oven-sh/setup-bun@v1
37+
uses: oven-sh/setup-bun@v2
3838

3939
- name: Install packages
4040
run: bun install
@@ -53,7 +53,7 @@ jobs:
5353
uses: actions/checkout@v4
5454

5555
- name: Set up Bun
56-
uses: oven-sh/setup-bun@v1
56+
uses: oven-sh/setup-bun@v2
5757

5858
- name: Install packages
5959
run: bun install
@@ -72,7 +72,7 @@ jobs:
7272
uses: actions/checkout@v4
7373

7474
- name: Set up Bun
75-
uses: oven-sh/setup-bun@v1
75+
uses: oven-sh/setup-bun@v2
7676

7777
- name: Install packages
7878
run: bun install
@@ -88,7 +88,7 @@ jobs:
8888
uses: actions/checkout@v4
8989

9090
- name: Set up Bun
91-
uses: oven-sh/setup-bun@v1
91+
uses: oven-sh/setup-bun@v2
9292

9393
- name: Install packages
9494
run: bun install

0 commit comments

Comments
 (0)