From 029b558f571e035f9c22dc01214d6e3b9b76ecc4 Mon Sep 17 00:00:00 2001 From: Bruce Mitchener Date: Tue, 19 Dec 2023 20:18:36 -0500 Subject: [PATCH] ci: Update to `actions/checkout@v4`. This brings changes to keep up with the GitHub Actions internals (among other changes). This will remove some of the deprecation warnings in the GitHub Actions UI. --- .github/workflows/ccpp.yml | 2 +- .github/workflows/create-tag.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ccpp.yml b/.github/workflows/ccpp.yml index d935f11..d75a40b 100644 --- a/.github/workflows/ccpp.yml +++ b/.github/workflows/ccpp.yml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v4 - name: apt-update run: sudo apt-get update -qq - name: apt get glfw diff --git a/.github/workflows/create-tag.yml b/.github/workflows/create-tag.yml index f5f30b0..bb5e0dd 100644 --- a/.github/workflows/create-tag.yml +++ b/.github/workflows/create-tag.yml @@ -9,7 +9,7 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - uses: butlerlogic/action-autotag@stable with: GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"