Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update github actions using deprecated workflows #289

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/codeql.yml
Expand Up @@ -34,11 +34,11 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

# 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 }}

Expand All @@ -51,6 +51,6 @@ jobs:
run: make

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
uses: github/codeql-action/analyze@v3
with:
category: "/language:${{matrix.language}}"
2 changes: 1 addition & 1 deletion .github/workflows/codespell.yml
Expand Up @@ -5,7 +5,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: install codespell
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/curl-for-win.yml
Expand Up @@ -49,7 +49,7 @@ jobs:

- name: 'list dependencies'
run: cat urls.txt
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: 'trurl-windows'
retention-days: 5
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/makefile.yml
Expand Up @@ -25,7 +25,7 @@ jobs:
LDFLAGS="-fsanitize=address,undefined,signed-integer-overflow -g"

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: install libcurl
run: |
Expand All @@ -48,7 +48,7 @@ jobs:
runs-on: windows-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: install cygwin
uses: cygwin/cygwin-install-action@master
Expand All @@ -68,7 +68,7 @@ jobs:
runs-on: macos-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: make
run: make
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reuse.yml
Expand Up @@ -24,6 +24,6 @@ jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: REUSE Compliance Check
uses: fsfe/reuse-action@v1