diff options
author | Paulo Gomes <pjbgf@linux.com> | 2023-03-05 16:37:14 +0000 |
---|---|---|
committer | Paulo Gomes <pjbgf@linux.com> | 2023-03-05 16:59:12 +0000 |
commit | 7368bb92af69a10ca786bfdcbbd52008e3d8395c (patch) | |
tree | e15c6f2910c26461b0f4a7cb24098b164e67b811 /.github/workflows/git.yml | |
parent | fba136de01b6fe8c0530626587c7a1f7f6157563 (diff) | |
download | go-git-7368bb92af69a10ca786bfdcbbd52008e3d8395c.tar.gz |
ci: Bump GitHub actions
Removes the error messages:
Node.js 12 actions are deprecated.
Signed-off-by: Paulo Gomes <pjbgf@linux.com>
Diffstat (limited to '.github/workflows/git.yml')
-rw-r--r-- | .github/workflows/git.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/git.yml b/.github/workflows/git.yml index f3dbe47..c945e72 100644 --- a/.github/workflows/git.yml +++ b/.github/workflows/git.yml @@ -17,12 +17,12 @@ jobs: steps: - name: Install Go - uses: actions/setup-go@v1 + uses: actions/setup-go@v3 with: go-version: 1.20.x - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Install build dependencies run: sudo apt-get install gettext |