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

⬆️ Actions: Bump actions/checkout from 2 to 4 #251

Merged
merged 1 commit into from Mar 24, 2024
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/package.yml
Expand Up @@ -10,7 +10,7 @@ jobs:
name: Publish to NuGet.org
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- uses: nuget/setup-nuget@v1
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/update-settings.yml
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest

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

# If this is a PR, dry-run the PR and watch for errors
- name: Dry-run settings in the PR
Expand All @@ -30,7 +30,7 @@ jobs:
# Explicitly checkout main branch to ensure production settings are reset
- name: Switch to main for production settings
if: github.event_name == 'pull_request'
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: main

Expand Down