diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml index 1035201..d28fc5e 100644 --- a/.github/workflows/build-test.yml +++ b/.github/workflows/build-test.yml @@ -1,4 +1,4 @@ -name: "build-test" +name: "Build Test" on: pull_request: @@ -9,7 +9,7 @@ defaults: jobs: build: name: Building & testing @bitwarden/sm-action for - ${{ matrix.settings.os }} - runs-on: ${{ matrix.settings.os || 'ubuntu-latest' }} + runs-on: ${{ matrix.settings.os || 'ubuntu-24.04' }} strategy: fail-fast: false matrix: @@ -26,7 +26,7 @@ jobs: npm run dist npm run test - - os: ubuntu-22.04 + - os: ubuntu-24.04 target: x86_64-unknown-linux-gnu build: | npm run dist diff --git a/.github/workflows/check-dist.yml b/.github/workflows/check-dist.yml index 5ea74ca..3791526 100644 --- a/.github/workflows/check-dist.yml +++ b/.github/workflows/check-dist.yml @@ -18,9 +18,11 @@ defaults: jobs: check-dist: + name: Check dist runs-on: ubuntu-22.04 steps: + name: Checkout repo - uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 - name: Setup Node @@ -47,7 +49,8 @@ jobs: fi # If index.js was different than expected, upload the expected version as an artifact - - uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4 + - name: Upload artifact + uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4 if: ${{ failure() && steps.diff.conclusion == 'failure' }} with: name: dist diff --git a/.github/workflows/qa-run.yml b/.github/workflows/qa-run.yml index 6c09bfc..9ab2441 100644 --- a/.github/workflows/qa-run.yml +++ b/.github/workflows/qa-run.yml @@ -1,4 +1,4 @@ -name: "qa-run" +name: QA Run on: workflow_dispatch: inputs: @@ -18,14 +18,14 @@ on: jobs: run: name: Running QA test on ${{ matrix.settings.os }} - runs-on: ${{ matrix.settings.os || 'ubuntu-latest' }} + runs-on: ${{ matrix.settings.os || 'ubuntu-24.04' }} strategy: fail-fast: false matrix: settings: - os: macos-13 - os: windows-2022 - - os: ubuntu-22.04 + - os: ubuntu-24.04 steps: - name: Checkout uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 93c340b..118b893 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -91,7 +91,7 @@ jobs: token: ${{ secrets.GITHUB_TOKEN }} draft: true - - name: git tag + - name: Git tag env: VERSION: ${{ steps.version.outputs.major_version }} run: git tag -f $VERSION