Skip to content

Commit 0fe914f

Browse files
committed
Fix deprecation warnings in GitHub Actions.
1 parent b5aba04 commit 0fe914f

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/build-base.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ jobs:
3636
STACK_TAG: ${{ inputs.stackTag }}
3737
steps:
3838
- name: Checkout code
39-
uses: actions/checkout@v3
39+
uses: actions/checkout@v4
4040
- name: Login to GitHub Container Registry
41-
uses: docker/login-action@v2
41+
uses: docker/login-action@v3
4242
with:
4343
registry: ghcr.io
4444
username: ${{ github.actor }}

.github/workflows/build-service.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,11 @@ jobs:
5151
runs-on: ubuntu-latest
5252
steps:
5353
- name: Checkout code
54-
uses: actions/checkout@v3
54+
uses: actions/checkout@v4
5555
- name: Fix permissions
5656
run: chmod -R a+rwX $GITHUB_WORKSPACE
5757
- name: Login to GitHub Container Registry
58-
uses: docker/login-action@v2
58+
uses: docker/login-action@v3
5959
with:
6060
registry: ghcr.io
6161
username: ${{ github.actor }}
@@ -87,9 +87,9 @@ jobs:
8787
BASE_TAG: ${{ matrix.baseTag }}
8888
steps:
8989
- name: Checkout code
90-
uses: actions/checkout@v3
90+
uses: actions/checkout@v4
9191
- name: Login to GitHub Container Registry
92-
uses: docker/login-action@v2
92+
uses: docker/login-action@v3
9393
with:
9494
registry: ghcr.io
9595
username: ${{ github.actor }}

.github/workflows/ci-release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,13 @@ jobs:
3535
|| startsWith(github.head_ref, 'tickets/')
3636
3737
steps:
38-
- uses: actions/checkout@v3
38+
- uses: actions/checkout@v4
3939

4040
- name: Fix permissions
4141
run: chmod -R a+rwX $GITHUB_WORKSPACE
4242

4343
- name: Login to GitHub Container Registry
44-
uses: docker/login-action@v2
44+
uses: docker/login-action@v3
4545
with:
4646
registry: ghcr.io
4747
username: ${{ github.actor }}

0 commit comments

Comments
 (0)