summaryrefslogtreecommitdiffstats
path: root/.github/workflows
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2024-01-01 23:43:47 -0500
committerTavian Barnes <tavianator@tavianator.com>2024-01-01 23:46:43 -0500
commit1117564e6f06860b826f0bc9d27e7d26b7e56eee (patch)
treefbdccf9f5aace8c403eb5ab0ce370516932b1b9f /.github/workflows
parent9cf8ea46ecc274351db419c2ab8fdf68c2d223d8 (diff)
downloadbfs-1117564e6f06860b826f0bc9d27e7d26b7e56eee.tar.xz
ci: Update action and image versions
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/ci.yml12
-rw-r--r--.github/workflows/codecov.yml4
-rw-r--r--.github/workflows/codeql.yml8
3 files changed, 12 insertions, 12 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index bc0719e..38194f2 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -6,10 +6,10 @@ jobs:
linux:
name: Linux
- runs-on: ubuntu-latest
+ runs-on: ubuntu-22.04
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
- name: Install dependencies
run: |
@@ -48,7 +48,7 @@ jobs:
runs-on: macos-13
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
- name: Install dependencies
run: |
@@ -64,14 +64,14 @@ jobs:
if: ${{ github.repository_owner == 'tavianator' && (github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository) }}
- runs-on: ubuntu-latest
+ runs-on: ubuntu-22.04
concurrency: spurion
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
- - uses: tailscale/github-action@main
+ - uses: tailscale/github-action@v2
with:
oauth-client-id: ${{ secrets.TS_OAUTH_CLIENT_ID }}
oauth-secret: ${{ secrets.TS_OAUTH_SECRET }}
diff --git a/.github/workflows/codecov.yml b/.github/workflows/codecov.yml
index 073479a..9c2119b 100644
--- a/.github/workflows/codecov.yml
+++ b/.github/workflows/codecov.yml
@@ -4,10 +4,10 @@ on: [push]
jobs:
build:
- runs-on: ubuntu-latest
+ runs-on: ubuntu-22.04
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
- name: Install dependencies
run: |
diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml
index 3a2f81f..71073c6 100644
--- a/.github/workflows/codeql.yml
+++ b/.github/workflows/codeql.yml
@@ -13,7 +13,7 @@ on:
jobs:
analyze:
name: Analyze
- runs-on: ubuntu-latest
+ runs-on: ubuntu-22.04
permissions:
actions: read
contents: read
@@ -24,7 +24,7 @@ jobs:
steps:
- name: Checkout
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
- name: Install dependencies
run: |
@@ -41,7 +41,7 @@ jobs:
liburing-dev
- name: Initialize CodeQL
- uses: github/codeql-action/init@v2
+ uses: github/codeql-action/init@v3
with:
languages: cpp
queries: +security-and-quality
@@ -51,6 +51,6 @@ jobs:
make -j$(nproc) all
- name: Perform CodeQL Analysis
- uses: github/codeql-action/analyze@v2
+ uses: github/codeql-action/analyze@v3
with:
category: "/language:cpp"