Skip to content

Commit 9efe595

Browse files
authored
Merge pull request #310 from sil-org/update-actions
upgrade GitHub actions
2 parents 1d31607 + 610dd29 commit 9efe595

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
name: Test
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v4
11+
- uses: actions/checkout@v6
1212
- name: Run tests
1313
run: docker compose run test
1414

@@ -18,18 +18,18 @@ jobs:
1818
runs-on: ubuntu-latest
1919
if: github.ref_name == 'master' || startsWith(github.ref, 'refs/tags/')
2020
steps:
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@v6
2222

2323
- name: Log in to GHCR
24-
uses: docker/login-action@v3
24+
uses: docker/login-action@v4
2525
with:
2626
registry: ghcr.io
2727
username: ${{ github.actor}}
2828
password: ${{ secrets.GITHUB_TOKEN}}
2929

3030
- name: Extract metadata (tags, labels) for Docker
3131
id: meta
32-
uses: docker/metadata-action@v5
32+
uses: docker/metadata-action@v6
3333
with:
3434
images: |
3535
ghcr.io/${{ github.repository_owner }}/ecs-deploy
@@ -39,7 +39,7 @@ jobs:
3939
type=semver,pattern={{major.minor}}
4040
4141
- name: Build and push Docker image
42-
uses: docker/build-push-action@v5
42+
uses: docker/build-push-action@v7
4343
with:
4444
context: .
4545
push: true

0 commit comments

Comments
 (0)