diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e3aeb541..57cb9582 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -10,7 +10,7 @@ jobs: - name: Checkout uses: actions/checkout@v4 - name: Set up Go - uses: actions/setup-go@v4 + uses: actions/setup-go@v5 with: go-version-file: go.mod cache: false @@ -28,7 +28,7 @@ jobs: - name: Change Cache Key run: echo '// ${{ github.job }}' >> go.sum - name: Set up Go - uses: actions/setup-go@v4 + uses: actions/setup-go@v5 with: go-version-file: go.mod - name: Test @@ -56,7 +56,7 @@ jobs: username: ${{ github.actor }} password: ${{ github.token }} - name: Set up Go - uses: actions/setup-go@v4 + uses: actions/setup-go@v5 with: go-version-file: go.mod - name: Set build variables @@ -99,7 +99,7 @@ jobs: docker manifest create "$REPO:beta" "${IMAGES[@]}" docker manifest push "$REPO:beta" - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: dist path: dist diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 542a2b71..89379f34 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -42,7 +42,7 @@ jobs: # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL - uses: github/codeql-action/init@v2 + uses: github/codeql-action/init@v3 with: languages: ${{ matrix.language }} # If you wish to specify custom queries, you can do so here or in a config file. @@ -54,14 +54,14 @@ jobs: - name: Install Go if: matrix.language == 'go' - uses: actions/setup-go@v4 + uses: actions/setup-go@v5 with: go-version-file: go.mod # Autobuild attempts to build any compiled languages (C/C++, C#, or Java). # If this step fails, then you should remove it and run the build manually (see below) - name: Autobuild - uses: github/codeql-action/autobuild@v2 + uses: github/codeql-action/autobuild@v3 # ℹī¸ Command-line programs to run using the OS shell. # 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun @@ -74,6 +74,6 @@ jobs: # ./location_of_script_within_repo/buildscript.sh - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v2 + uses: github/codeql-action/analyze@v3 with: category: "/language:${{matrix.language}}" diff --git a/go.mod b/go.mod index 2739c246..1820e959 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/gabe565/ascii-movie -go 1.21.4 +go 1.21.6 replace github.com/charmbracelet/lipgloss => github.com/gabe565/lipgloss v0.0.0-20231124201931-3d7efac1ed1b