Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ jobs:
checks: write
statuses: write
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v6.0.3

- name: Setup node 24
uses: actions/setup-node@v6
uses: actions/setup-node@v6.4.0
with:
node-version: 24.11.1

Expand Down Expand Up @@ -58,7 +58,7 @@ jobs:

# If index.js was different than expected, upload the expected version as an artifact
- name: Upload dist as artifact if differences detected
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v5.0.0
if: ${{ failure() && steps.diff.conclusion == 'failure' }}
with:
name: dist
Expand Down Expand Up @@ -100,10 +100,10 @@ jobs:
contents: read
id-token: write
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v6.0.3

- name: Install Octopus CLI
uses: OctopusDeploy/install-octopus-cli-action@v3
uses: OctopusDeploy/install-octopus-cli-action@v3.1.4

- name: Test login with API Key
id: api_key
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v6.0.3

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v4
uses: github/codeql-action/init@v4.36.2
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
Expand All @@ -51,9 +51,9 @@ jobs:
# Autobuild attempts to build any compiled languages (C/C++, C#, Go, Java, or Swift).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@v4
uses: github/codeql-action/autobuild@v4.36.2

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v4
uses: github/codeql-action/analyze@v4.36.2
with:
category: "/language:${{matrix.language}}"
2 changes: 1 addition & 1 deletion .github/workflows/conventional-commit-pr-title.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ jobs:
permissions:
pull-requests: read
steps:
- uses: amannn/action-semantic-pull-request@v6
- uses: amannn/action-semantic-pull-request@v6.1.1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
10 changes: 5 additions & 5 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,28 +15,28 @@ jobs:
contents: write # Needed to tag repo and create releases
pull-requests: write # Needed to add comments to pull requests on release
steps:
- uses: google-github-actions/release-please-action@v3
- uses: google-github-actions/release-please-action@v3.7.13
id: release
with:
package-name: ${{env.ACTION_NAME}}
release-type: node
token: ${{ secrets.GITHUB_TOKEN }}
command: github-release

- uses: actions/checkout@v3
- uses: actions/checkout@v3.6.0
if: ${{ steps.release.outputs.release_created }}

- name: Tag minor version
if: ${{ steps.release.outputs.release_created }}
uses: richardsimko/update-tag@v1
uses: richardsimko/update-tag@v1.1.6
with:
tag_name: v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Tag major version
if: ${{ steps.release.outputs.release_created }}
uses: richardsimko/update-tag@v1
uses: richardsimko/update-tag@v1.1.6
with:
tag_name: v${{ steps.release.outputs.major }}
env:
Expand All @@ -48,7 +48,7 @@ jobs:
- release-please-release
steps:
- id: release-pr
uses: google-github-actions/release-please-action@v3
uses: google-github-actions/release-please-action@v3.7.13
with:
token: ${{ secrets.CHANGESETS_GITHUB_TOKEN }}
release-type: node
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-login.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ jobs:
runs-on: ubuntu-latest
name: Test login to Octopus
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v6.0.3

- name: Install Octopus CLI
uses: OctopusDeploy/install-octopus-cli-action@v3
uses: OctopusDeploy/install-octopus-cli-action@v3.1.4

- name: Login to Octopus using OIDC
uses: ./
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v6.0.3

- name: Self-hosted Renovate
uses: renovatebot/github-action@f9c81dddc9b589e4e6ae0326d1e36f6bc415d230 # v39.2.4
Expand Down
Loading